1 files changed, 1 insertions, 4 deletions
diff --git a/synapse/storage/background_updates.py b/synapse/storage/background_updates.py
index 3fc25cd828..30788137a8 100644
--- a/synapse/storage/background_updates.py
+++ b/synapse/storage/background_updates.py
@@ -148,11 +148,8 @@ class BackgroundUpdateStore(SQLBaseStore):
return False
- async def has_completed_background_update(self, update_name):
+ async def has_completed_background_update(self, update_name) -> bool:
"""Check if the given background update has finished running.
-
- Returns:
- Deferred[bool]
"""
if self._all_done:
|