1
0

Replace returnValue with return (#5736)

This commit is contained in:
Amber Brown
2019-07-23 23:00:55 +10:00
committed by GitHub
parent 18a466b84e
commit 4806651744
177 changed files with 1359 additions and 1513 deletions

View File

@@ -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.