diff options
author | David Robertson <davidr@element.io> | 2021-11-29 11:28:12 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-29 11:28:12 +0000 |
commit | dc0a3cd596c4bab5ef6115343ed638f3e56c32fa (patch) | |
tree | 67a87d76f93b6846553efe0bfe813fa7308fbb93 /mypy.ini | |
parent | Fix changelog filename in #11441 (diff) | |
download | synapse-dc0a3cd596c4bab5ef6115343ed638f3e56c32fa.tar.xz |
disallow-untyped-defs for the module_api (#11029)
Diffstat (limited to 'mypy.ini')
-rw-r--r-- | mypy.ini | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mypy.ini b/mypy.ini index f3361c00bc..51056a8f64 100644 --- a/mypy.ini +++ b/mypy.ini @@ -165,6 +165,9 @@ disallow_untyped_defs = True [mypy-synapse.metrics.*] disallow_untyped_defs = True +[mypy-synapse.module_api.*] +disallow_untyped_defs = True + [mypy-synapse.push.*] disallow_untyped_defs = True |