From fd9276245a11441096fc5d521812d03f751faa52 Mon Sep 17 00:00:00 2001 From: akamat10 Date: Mon, 16 Sep 2024 09:14:23 -0400 Subject: [PATCH] Fix pylint warning --- pylint/checkers/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylint/checkers/exceptions.py b/pylint/checkers/exceptions.py index ddbd0af6b2..a503000560 100644 --- a/pylint/checkers/exceptions.py +++ b/pylint/checkers/exceptions.py @@ -94,7 +94,7 @@ def _is_raising(body: list[nodes.NodeNG]) -> bool: "E0710": ( "Raising a class which doesn't inherit from BaseException", "raising-non-exception", - "Used when a class which doesn't inherit from " "BaseException is raised.", + "Used when a class which doesn't inherit from BaseException is raised.", ), "E0711": ( "NotImplemented raised - should raise NotImplementedError",