mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 12:26:02 -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
|
@ -101,7 +101,7 @@ class ModuleApi(object):
|
|||
)
|
||||
user_id = yield self.register_user(localpart, displayname, emails)
|
||||
_, access_token = yield self.register_device(user_id)
|
||||
defer.returnValue((user_id, access_token))
|
||||
return (user_id, access_token)
|
||||
|
||||
def register_user(self, localpart, displayname=None, emails=[]):
|
||||
"""Registers a new user with given localpart and optional displayname, emails.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue