diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-10-26 14:17:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-26 14:17:31 -0400 |
commit | 10f45d85bb355c66110b9221b0aa09010d2d03ad (patch) | |
tree | bc315cfe33e2d9d53c221ae17d5dbe945f8d7579 /synapse/storage/databases/main/profile.py | |
parent | Split admin API for reported events into a detail and a list view (#8539) (diff) | |
download | synapse-10f45d85bb355c66110b9221b0aa09010d2d03ad.tar.xz |
Add type hints for account validity handler (#8620)
This also fixes a bug by fixing handling of an account which doesn't expire.
Diffstat (limited to 'synapse/storage/databases/main/profile.py')
-rw-r--r-- | synapse/storage/databases/main/profile.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/storage/databases/main/profile.py b/synapse/storage/databases/main/profile.py index a6d1eb908a..0e25ca3d7a 100644 --- a/synapse/storage/databases/main/profile.py +++ b/synapse/storage/databases/main/profile.py @@ -39,7 +39,7 @@ class ProfileWorkerStore(SQLBaseStore): avatar_url=profile["avatar_url"], display_name=profile["displayname"] ) - async def get_profile_displayname(self, user_localpart: str) -> str: + async def get_profile_displayname(self, user_localpart: str) -> Optional[str]: return await self.db_pool.simple_select_one_onecol( table="profiles", keyvalues={"user_id": user_localpart}, @@ -47,7 +47,7 @@ class ProfileWorkerStore(SQLBaseStore): desc="get_profile_displayname", ) - async def get_profile_avatar_url(self, user_localpart: str) -> str: + async def get_profile_avatar_url(self, user_localpart: str) -> Optional[str]: return await self.db_pool.simple_select_one_onecol( table="profiles", keyvalues={"user_id": user_localpart}, |