Skip to content
Closed
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
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
repos:
- repo: https://github.com/psf/black
rev: 24.10.0
rev: 25.1.0
hooks:
- id: black
args: [--line-length, "128"]

- repo: https://github.com/asottile/blacken-docs
rev: 1.19.0
rev: 1.19.1
hooks:
- id: blacken-docs

- repo: https://github.com/PyCQA/flake8
rev: 7.1.1
rev: 7.1.2
hooks:
- id: flake8
args: [--ignore, "E203,E501,B006,W503"]
additional_dependencies: [flake8-bugbear]

- repo: https://github.com/PyCQA/isort
rev: 5.13.2
rev: 6.0.1
hooks:
- id: isort
args: [--profile, "black"]

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.11.2
rev: v1.15.0
hooks:
- id: mypy
args: [--ignore-missing-imports]
Expand Down
2 changes: 1 addition & 1 deletion cwt/algs/okp.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def to_cose_key(
X448PublicKey,
X25519PrivateKey,
X25519PublicKey,
]
],
) -> Dict[int, Any]:
cose_key: Dict[int, Any] = {}

Expand Down
Loading