diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-03-11 07:06:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-11 07:06:21 -0500 |
commit | bc9dff1d9597251a15a15475cb8e8194b2d14910 (patch) | |
tree | 1ce61e281d4720fb6f9428e69a87095b35352a44 /synapse/handlers | |
parent | Note that contributors can sign off privately (#12204) (diff) | |
download | synapse-bc9dff1d9597251a15a15475cb8e8194b2d14910.tar.xz |
Remove unnecessary pass statements. (#12206)
Diffstat (limited to 'synapse/handlers')
-rw-r--r-- | synapse/handlers/device.py | 2 | ||||
-rw-r--r-- | synapse/handlers/presence.py | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/synapse/handlers/device.py b/synapse/handlers/device.py index d90cb259a6..d5ccaa0c37 100644 --- a/synapse/handlers/device.py +++ b/synapse/handlers/device.py @@ -371,7 +371,6 @@ class DeviceHandler(DeviceWorkerHandler): log_kv( {"reason": "User doesn't have device id.", "device_id": device_id} ) - pass else: raise @@ -414,7 +413,6 @@ class DeviceHandler(DeviceWorkerHandler): # no match set_tag("error", True) set_tag("reason", "User doesn't have that device id.") - pass else: raise diff --git a/synapse/handlers/presence.py b/synapse/handlers/presence.py index 9927a30e6e..34d9411bbf 100644 --- a/synapse/handlers/presence.py +++ b/synapse/handlers/presence.py @@ -267,7 +267,6 @@ class BasePresenceHandler(abc.ABC): is_syncing: Whether or not the user is now syncing sync_time_msec: Time in ms when the user was last syncing """ - pass async def update_external_syncs_clear(self, process_id: str) -> None: """Marks all users that had been marked as syncing by a given process @@ -277,7 +276,6 @@ class BasePresenceHandler(abc.ABC): This is a no-op when presence is handled by a different worker. """ - pass async def process_replication_rows( self, stream_name: str, instance_name: str, token: int, rows: list |