Skip to content
Snippets Groups Projects
Commit b4826d6e authored by Andrew Morgan's avatar Andrew Morgan
Browse files

Fix incorrect return signature

parent 3b4556cf
No related branches found
No related tags found
No related merge requests found
...@@ -99,7 +99,7 @@ class RegistrationWorkerStore(SQLBaseStore): ...@@ -99,7 +99,7 @@ class RegistrationWorkerStore(SQLBaseStore):
) )
@cached() @cached()
async def get_expiration_ts_for_user(self, user_id: str) -> Optional[None]: async def get_expiration_ts_for_user(self, user_id: str) -> Optional[int]:
"""Get the expiration timestamp for the account bearing a given user ID. """Get the expiration timestamp for the account bearing a given user ID.
Args: Args:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment