summaryrefslogtreecommitdiff
path: root/mypy.ini
diff options
context:
space:
mode:
Diffstat (limited to 'mypy.ini')
-rw-r--r--mypy.ini3
1 files changed, 0 insertions, 3 deletions
diff --git a/mypy.ini b/mypy.ini
index 49e23d32..709e554e 100644
--- a/mypy.ini
+++ b/mypy.ini
@@ -1,9 +1,6 @@
[mypy]
files = lib/**/*.py,tests/**/*.py
-# Some of our code "reuses" variable names in different blocks. Mypy doesn't like that by default.
-allow_redefinition = True
-
# We use class properties, which mypy considers an error, probably because it's going to be deprecated.
# Ignore that for now.
disable_error_code = misc