Skip to content
Snippets Groups Projects
Commit 92afd961 authored by Moul's avatar Moul
Browse files

Bump broken isort, black, pylint pre-commit hooks

Fix pylint report
parent c7da1d14
No related branches found
No related tags found
1 merge request!191Release v1.1.1 bugfix release
exclude: ^docs/ exclude: ^docs/
repos: repos:
- repo: https://github.com/psf/black - repo: https://github.com/psf/black
rev: 22.1.0 rev: 22.3.0
hooks: hooks:
- id: black - id: black
- repo: https://github.com/PyCQA/isort - repo: https://github.com/PyCQA/isort
rev: 5.10.1 rev: 5.12.0
hooks: hooks:
- id: isort - id: isort
args: ["--profile", "black"] args: ["--profile", "black"]
...@@ -17,7 +17,7 @@ repos: ...@@ -17,7 +17,7 @@ repos:
- "--install-types" - "--install-types"
- "--non-interactive" - "--non-interactive"
- repo: https://github.com/PyCQA/pylint - repo: https://github.com/PyCQA/pylint
rev: v2.12.2 rev: v2.15.8
hooks: hooks:
- id: pylint - id: pylint
- repo: https://github.com/asottile/pyupgrade - repo: https://github.com/asottile/pyupgrade
......
...@@ -65,14 +65,14 @@ class ParserMissingPublicKeysException(Exception): ...@@ -65,14 +65,14 @@ class ParserMissingPublicKeysException(Exception):
# Exception messages listed here # Exception messages listed here
PARSER_MISSING_SIGNING_KEY_EXCEPTION = ParserMissingSigningKeyException( 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( 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( 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