Skip to content
Snippets Groups Projects
Commit 8435f645 authored by Moul's avatar Moul
Browse files

Bump broken isort, black, pylint pre-commit hooks

Fix pylint report
parent 79bd6d76
No related branches found
No related tags found
No related merge requests found
exclude: ^docs/
repos:
- repo: https://github.com/psf/black
rev: 22.1.0
rev: 22.3.0
hooks:
- id: black
- repo: https://github.com/PyCQA/isort
rev: 5.10.1
rev: 5.12.0
hooks:
- id: isort
args: ["--profile", "black"]
......@@ -17,7 +17,7 @@ repos:
- "--install-types"
- "--non-interactive"
- repo: https://github.com/PyCQA/pylint
rev: v2.12.2
rev: v2.15.8
hooks:
- id: pylint
- repo: https://github.com/asottile/pyupgrade
......
......@@ -65,14 +65,14 @@ class ParserMissingPublicKeysException(Exception):
# Exception messages listed here
PARSER_MISSING_SIGNING_KEY_EXCEPTION = ParserMissingSigningKeyException(
"The message is encrypted but no SigningKey " "instance is provided"
"The message is encrypted but no SigningKey instance is provided"
)
PARSER_MISSING_PUBLIC_KEYS_EXCEPTION = ParserMissingPublicKeysException(
"At least one signature but no public keys " "are provided"
"At least one signature but no public keys are provided"
)
MISSING_PUBLIC_KEY_AND_SIGNING_KEY_EXCEPTION = MissingPublickeyAndSigningKeyException(
"Ascii Armor Message needs a " "public key or a SigningKey but " "none are provided"
"Ascii Armor Message needs a public key or a SigningKey but none are provided"
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment