diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-10-18 15:01:10 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-18 15:01:10 -0400 |
commit | 3ab55d43bd66b377c1ed94a40931eba98dd07b01 (patch) | |
tree | 44ebe940127f32bde6e497211f5baf7647442117 /synapse/api/ratelimiting.py | |
parent | Check auth on received events' auth_events (#11001) (diff) | |
download | synapse-3ab55d43bd66b377c1ed94a40931eba98dd07b01.tar.xz |
Add missing type hints to synapse.api. (#11109)
* Convert UserPresenceState to attrs. * Remove args/kwargs from error classes and explicitly pass msg/errorcode.
Diffstat (limited to 'synapse/api/ratelimiting.py')
-rw-r--r-- | synapse/api/ratelimiting.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/api/ratelimiting.py b/synapse/api/ratelimiting.py index e8964097d3..849c18ceda 100644 --- a/synapse/api/ratelimiting.py +++ b/synapse/api/ratelimiting.py @@ -161,7 +161,7 @@ class Ratelimiter: return allowed, time_allowed - def _prune_message_counts(self, time_now_s: float): + def _prune_message_counts(self, time_now_s: float) -> None: """Remove message count entries that have not exceeded their defined rate_hz limit @@ -190,7 +190,7 @@ class Ratelimiter: update: bool = True, n_actions: int = 1, _time_now_s: Optional[float] = None, - ): + ) -> None: """Checks if an action can be performed. If not, raises a LimitExceededError Checks if the user has ratelimiting disabled in the database by looking |