diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-12-29 17:42:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-29 17:42:10 -0500 |
commit | 9999eb2d0270519f397343c90dfb394823d08e82 (patch) | |
tree | b737049dc33bbd76da7d3ba70b8f817a740c611f /mypy.ini | |
parent | Validate input parameters for the sendToDevice API. (#8975) (diff) | |
download | synapse-9999eb2d0270519f397343c90dfb394823d08e82.tar.xz |
Add type hints to admin and room list handlers. (#8973)
Diffstat (limited to 'mypy.ini')
-rw-r--r-- | mypy.ini | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mypy.ini b/mypy.ini index 0518d3f1af..1e88909d46 100644 --- a/mypy.ini +++ b/mypy.ini @@ -25,6 +25,7 @@ files = synapse/handlers/_base.py, synapse/handlers/account_data.py, synapse/handlers/account_validity.py, + synapse/handlers/admin.py, synapse/handlers/appservice.py, synapse/handlers/auth.py, synapse/handlers/cas_handler.py, @@ -45,6 +46,7 @@ files = synapse/handlers/read_marker.py, synapse/handlers/register.py, synapse/handlers/room.py, + synapse/handlers/room_list.py, synapse/handlers/room_member.py, synapse/handlers/room_member_worker.py, synapse/handlers/saml_handler.py, @@ -114,6 +116,9 @@ ignore_missing_imports = True [mypy-h11] ignore_missing_imports = True +[mypy-msgpack] +ignore_missing_imports = True + [mypy-opentracing] ignore_missing_imports = True |