diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-10-21 06:44:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-21 06:44:31 -0400 |
commit | de5cafe980391ae6e2de1d38ac4e42dea182a304 (patch) | |
tree | 6b7a69562b72b7163363eea9811623bfc3ebef98 /mypy.ini | |
parent | Consistently use wrap_as_background_task in more places (#8599) (diff) | |
download | synapse-de5cafe980391ae6e2de1d38ac4e42dea182a304.tar.xz |
Add type hints to profile and base handlers. (#8609)
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 b5db54ee3b..5e9f7b1259 100644 --- a/mypy.ini +++ b/mypy.ini @@ -15,8 +15,9 @@ files = synapse/events/builder.py, synapse/events/spamcheck.py, synapse/federation, - synapse/handlers/appservice.py, + synapse/handlers/_base.py, synapse/handlers/account_data.py, + synapse/handlers/appservice.py, synapse/handlers/auth.py, synapse/handlers/cas_handler.py, synapse/handlers/deactivate_account.py, @@ -32,6 +33,7 @@ files = synapse/handlers/pagination.py, synapse/handlers/password_policy.py, synapse/handlers/presence.py, + synapse/handlers/profile.py, synapse/handlers/read_marker.py, synapse/handlers/room.py, synapse/handlers/room_member.py, |