summaryrefslogtreecommitdiff
path: root/pylint/checkers/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/checkers/utils.py')
-rw-r--r--pylint/checkers/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/checkers/utils.py b/pylint/checkers/utils.py
index cff791364..62fd35347 100644
--- a/pylint/checkers/utils.py
+++ b/pylint/checkers/utils.py
@@ -312,7 +312,7 @@ def is_error(node: nodes.FunctionDef) -> bool:
return len(node.body) == 1 and isinstance(node.body[0], nodes.Raise)
-builtins = builtins.__dict__.copy() # type: ignore
+builtins = builtins.__dict__.copy() # type: ignore[assignment]
SPECIAL_BUILTINS = ("__builtins__",) # '__path__', '__file__')
@@ -323,7 +323,7 @@ def is_builtin_object(node: nodes.NodeNG) -> bool:
def is_builtin(name: str) -> bool:
"""return true if <name> could be considered as a builtin defined by python"""
- return name in builtins or name in SPECIAL_BUILTINS # type: ignore
+ return name in builtins or name in SPECIAL_BUILTINS # type: ignore[operator]
def is_defined_in_scope(