Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ default_language_version:
python: python3.10
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
Expand All @@ -17,14 +17,14 @@ repos:
# mypyc-compiled `black`, which is about 2x faster; see:
# https://black.readthedocs.io/en/stable/integrations/source_version_control.html
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 24.4.2
rev: 26.1.0
hooks:
- id: black
- repo: https://github.com/asottile/reorder-python-imports
rev: v3.13.0
rev: v3.16.0
hooks:
- id: reorder-python-imports
- repo: https://github.com/jendrikseipp/vulture
rev: 'v2.11'
rev: 'v2.14'
hooks:
- id: vulture
1 change: 0 additions & 1 deletion onetimepass/db/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from .json_encrypted import JSONEncryptedDB
from .models import DatabaseSchema


__all__ = [
"BaseDB",
"BaseDBException",
Expand Down
1 change: 0 additions & 1 deletion onetimepass/master_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

from onetimepass import settings


try:
import keyring # noqa 'keyring' in the try block with 'except ImportError' should also be defined in the except block
except ImportError:
Expand Down
Loading