Fix incorrect return signature
This commit is contained in:
parent
3b4556cf87
commit
b4826d6eb1
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue