mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-03 20:24:51 -04:00
Replace returnValue with return (#5736)
This commit is contained in:
parent
18a466b84e
commit
4806651744
177 changed files with 1359 additions and 1513 deletions
|
@ -34,15 +34,13 @@ class ProfileWorkerStore(SQLBaseStore):
|
|||
except StoreError as e:
|
||||
if e.code == 404:
|
||||
# no match
|
||||
defer.returnValue(ProfileInfo(None, None))
|
||||
return ProfileInfo(None, None)
|
||||
return
|
||||
else:
|
||||
raise
|
||||
|
||||
defer.returnValue(
|
||||
ProfileInfo(
|
||||
avatar_url=profile["avatar_url"], display_name=profile["displayname"]
|
||||
)
|
||||
return ProfileInfo(
|
||||
avatar_url=profile["avatar_url"], display_name=profile["displayname"]
|
||||
)
|
||||
|
||||
def get_profile_displayname(self, user_localpart):
|
||||
|
@ -168,7 +166,7 @@ class ProfileStore(ProfileWorkerStore):
|
|||
)
|
||||
|
||||
if res:
|
||||
defer.returnValue(True)
|
||||
return True
|
||||
|
||||
res = yield self._simple_select_one_onecol(
|
||||
table="group_invites",
|
||||
|
@ -179,4 +177,4 @@ class ProfileStore(ProfileWorkerStore):
|
|||
)
|
||||
|
||||
if res:
|
||||
defer.returnValue(True)
|
||||
return True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue