diff options
author | Erik Johnston <erik@matrix.org> | 2019-03-15 12:00:23 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-03-15 14:39:25 +0000 |
commit | 7a9aa4b81bf84cd1f0b61823ae69e9a91cd2fa98 (patch) | |
tree | eccfd4ce5f0ce1483daff312769156d163ea169c /synapse/rest/client | |
parent | Fixups (diff) | |
download | synapse-7a9aa4b81bf84cd1f0b61823ae69e9a91cd2fa98.tar.xz |
Isort
Diffstat (limited to 'synapse/rest/client')
-rw-r--r-- | synapse/rest/client/v2_alpha/account.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v2_alpha/account.py b/synapse/rest/client/v2_alpha/account.py index e1745fad2d..53f47e9da7 100644 --- a/synapse/rest/client/v2_alpha/account.py +++ b/synapse/rest/client/v2_alpha/account.py @@ -27,9 +27,9 @@ from synapse.http.servlet import ( assert_params_in_dict, parse_json_object_from_request, ) +from synapse.types import UserID from synapse.util.msisdn import phone_number_to_msisdn from synapse.util.threepids import check_3pid_allowed -from synapse.types import UserID from ._base import client_v2_patterns, interactive_auth_handler |