mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-16 12:53:51 +01:00
Fix pep8
This commit is contained in:
parent
00466e2feb
commit
402a7bf63d
4 changed files with 7 additions and 7 deletions
|
@ -188,7 +188,7 @@ class LoginRestServlet(ClientV1RestServlet):
|
||||||
|
|
||||||
# convert threepid identifiers to user IDs
|
# convert threepid identifiers to user IDs
|
||||||
if identifier["type"] == "m.id.thirdparty":
|
if identifier["type"] == "m.id.thirdparty":
|
||||||
if not 'medium' in identifier or not 'address' in identifier:
|
if 'medium' not in identifier or 'address' not in identifier:
|
||||||
raise SynapseError(400, "Invalid thirdparty identifier")
|
raise SynapseError(400, "Invalid thirdparty identifier")
|
||||||
|
|
||||||
address = identifier['address']
|
address = identifier['address']
|
||||||
|
|
Loading…
Reference in a new issue