summaryrefslogtreecommitdiff
path: root/astroid/decorators.py
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2023-05-12 08:10:44 -0400
committerGitHub <noreply@github.com>2023-05-12 14:10:44 +0200
commite1b577ab43a45e7ca0398cd73833a00539d74f18 (patch)
tree16081152dce41ef8b2acfe7f932be6730234197d /astroid/decorators.py
parent2cd9e90e80a1eb3318e4351ea3b8b3e8c83c235b (diff)
downloadastroid-git-e1b577ab43a45e7ca0398cd73833a00539d74f18.tar.gz
Remove pylint disables and resolves TODO in pylintrc (#2175)
Diffstat (limited to 'astroid/decorators.py')
-rw-r--r--astroid/decorators.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/astroid/decorators.py b/astroid/decorators.py
index 180e08c4..8baca60b 100644
--- a/astroid/decorators.py
+++ b/astroid/decorators.py
@@ -91,7 +91,6 @@ def raise_if_nothing_inferred(
except StopIteration as error:
# generator is empty
if error.args:
- # pylint: disable=not-a-mapping
raise InferenceError(**error.args[0]) from error
raise InferenceError(
"StopIteration raised without any error information."