diff options
author | David Robertson <davidr@element.io> | 2021-10-06 18:55:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-06 17:55:25 +0000 |
commit | f563676c097b830346acc7a4ce3e910c6b10c4c3 (patch) | |
tree | 40cdd8b11526d49bcef39d8a763f89c795c83ce7 /mypy.ini | |
parent | Add content to the Synapse documentation intro page (#10990) (diff) | |
download | synapse-f563676c097b830346acc7a4ce3e910c6b10c4c3.tar.xz |
`disallow-untyped-defs` for `synapse.state` (#11004)
* `disallow-untyped-defs` for `synapse.state` Much smaller than I was expecting!
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 86459bdcb6..a052d49c71 100644 --- a/mypy.ini +++ b/mypy.ini @@ -99,6 +99,9 @@ disallow_untyped_defs = True [mypy-synapse.rest.*] disallow_untyped_defs = True +[mypy-synapse.state.*] +disallow_untyped_defs = True + [mypy-synapse.util.batching_queue] disallow_untyped_defs = True |