diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-09-03 11:42:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-03 11:42:45 +0100 |
commit | 2a447826665a5ac8e12736214f0ef2401e72f1f9 (patch) | |
tree | ee18930dd9db500a09ad8901ac67ebe4a38c233d /synapse/handlers/appservice.py | |
parent | Opentrace device lists (#5853) (diff) | |
download | synapse-2a447826665a5ac8e12736214f0ef2401e72f1f9.tar.xz |
Remove double return statements (#5962)
Remove all the "double return" statements which were a result of us removing all the instances of ``` defer.returnValue(...) return ``` statements when we switched to python3 fully.
Diffstat (limited to 'synapse/handlers/appservice.py')
-rw-r--r-- | synapse/handlers/appservice.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/synapse/handlers/appservice.py b/synapse/handlers/appservice.py index d1a51df6f9..3e9b298154 100644 --- a/synapse/handlers/appservice.py +++ b/synapse/handlers/appservice.py @@ -294,12 +294,10 @@ class ApplicationServicesHandler(object): # we don't know if they are unknown or not since it isn't one of our # users. We can't poke ASes. return False - return user_info = yield self.store.get_user_by_id(user_id) if user_info: return False - return # user not found; could be the AS though, so check. services = self.store.get_app_services() |