mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 05:23:35 +00:00
python: Merge concatenated string literals that Black would uglify.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
d8d0e7dfff
commit
5028c081cb
@@ -987,8 +987,7 @@ class ExternalAuthResult:
|
||||
data_dict = {}
|
||||
|
||||
if login_token is not None:
|
||||
assert (not data_dict) and (user_profile is None), ("Passing in data_dict or user_profile " +
|
||||
"with login_token is disallowed.")
|
||||
assert (not data_dict) and (user_profile is None), "Passing in data_dict or user_profile with login_token is disallowed."
|
||||
self.instantiate_with_token(login_token, delete_stored_data)
|
||||
else:
|
||||
self.data_dict = data_dict.copy()
|
||||
|
||||
Reference in New Issue
Block a user