summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pylint/checkers/classes.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/pylint/checkers/classes.py b/pylint/checkers/classes.py
index 145890566..d475cfcfb 100644
--- a/pylint/checkers/classes.py
+++ b/pylint/checkers/classes.py
@@ -832,11 +832,6 @@ a metaclass class method.",
f"{BUILTINS}.type"
):
continue
- if (
- isinstance(ancestor, astroid.FunctionDef)
- and ancestor.name == "TypedDict"
- ):
- continue
if not isinstance(ancestor, astroid.ClassDef) or _is_invalid_base_class(
ancestor