summaryrefslogtreecommitdiff
path: root/mypy.ini
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2025-07-11 22:12:01 +0200
committerGitHub <noreply@github.com>2025-07-11 22:12:01 +0200
commit7bd72274780ccaeae8bbae6e761341079df21ecb (patch)
tree8979201b59645624cf585b13a20f44cb006a282d /mypy.ini
parent69929236217974f98b58cf3c458835b91c4cb35d (diff)
Do not redefine underscore (#3865)
* do not redefine underscore * Disallow any redefinitions going forward --------- Co-authored-by: CapellanCitizen <>
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