From 92afd9614ed6ae535b285faae1e19fef1243d8e7 Mon Sep 17 00:00:00 2001
From: Moul <moul@moul.re>
Date: Mon, 14 Aug 2023 16:43:37 +0200
Subject: [PATCH] Bump broken isort, black, pylint pre-commit hooks

Fix pylint report
---
 .pre-commit-config.yaml      | 6 +++---
 duniterpy/key/ascii_armor.py | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 8c0bd45..3db195f 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -1,11 +1,11 @@
 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
diff --git a/duniterpy/key/ascii_armor.py b/duniterpy/key/ascii_armor.py
index 882f23f..8d30c66 100644
--- a/duniterpy/key/ascii_armor.py
+++ b/duniterpy/key/ascii_armor.py
@@ -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"
 )
 
 
-- 
GitLab