diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-02-06 11:11:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-06 16:11:09 +0000 |
commit | d0fa217cd9c4243a234f60767523ea20a1ede4e0 (patch) | |
tree | 1ffcb75c619ea5932d80ddfdf2e0412e4d6168dd /mypy.ini | |
parent | Type hints for tests.federation (#14991) (diff) | |
download | synapse-d0fa217cd9c4243a234f60767523ea20a1ede4e0.tar.xz |
Add missing types to test_state. (#14985)
Diffstat (limited to 'mypy.ini')
-rw-r--r-- | mypy.ini | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mypy.ini b/mypy.ini index 2f8806e1f4..93de1c97ea 100644 --- a/mypy.ini +++ b/mypy.ini @@ -38,7 +38,6 @@ exclude = (?x) |tests/module_api/test_api.py |tests/rest/media/v1/test_media_storage.py |tests/server.py - |tests/test_state.py |tests/test_terms_auth.py )$ @@ -117,6 +116,9 @@ disallow_untyped_defs = True [mypy-tests.test_server] disallow_untyped_defs = True +[mypy-tests.test_state] +disallow_untyped_defs = True + [mypy-tests.types.*] disallow_untyped_defs = True |