diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-12-14 07:00:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-14 07:00:47 -0500 |
commit | 33abbc327813e65aaa91e10f98a31622c045004c (patch) | |
tree | df1a421f099ff6eee752422388f1c79bb5ee034b /mypy.ini | |
parent | checks for generators in database functions (#11564) (diff) | |
download | synapse-33abbc327813e65aaa91e10f98a31622c045004c.tar.xz |
Add missing type hints to synapse.http. (#11571)
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 a7b1f4eb64..9aeeca2bb2 100644 --- a/mypy.ini +++ b/mypy.ini @@ -161,6 +161,9 @@ disallow_untyped_defs = False [mypy-synapse.handlers.*] disallow_untyped_defs = True +[mypy-synapse.http.server] +disallow_untyped_defs = True + [mypy-synapse.metrics.*] disallow_untyped_defs = True |