diff options
author | David Robertson <davidr@element.io> | 2023-02-07 12:03:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-07 12:03:39 +0000 |
commit | 4dd2b6165c876fda978d47a907aaabaab3c794ab (patch) | |
tree | d6b5344621313447ace9f2df9f0873a42d6ac3b3 /mypy.ini | |
parent | Add tests for using _flatten_dict with an event. (#15002) (diff) | |
download | synapse-4dd2b6165c876fda978d47a907aaabaab3c794ab.tar.xz |
Proper types for tests.test_terms_auth (#15007)
* Proper types for tests.test_terms_auth * Changelog
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 11e683b704..0efafb26b6 100644 --- a/mypy.ini +++ b/mypy.ini @@ -35,7 +35,6 @@ exclude = (?x) |tests/module_api/test_api.py |tests/rest/media/v1/test_media_storage.py |tests/server.py - |tests/test_terms_auth.py )$ [mypy-synapse.federation.transport.client] @@ -119,6 +118,9 @@ disallow_untyped_defs = True [mypy-tests.test_state] disallow_untyped_defs = True +[mypy-tests.test_terms_auth] +disallow_untyped_defs = True + [mypy-tests.types.*] disallow_untyped_defs = True |