mirror of https://github.com/zulip/zulip.git
auth: Remove redundant call to pad_method_dict().
This was called in both if and else with the same argument. I believe there's no reason for it to exist twice and having it just once would be a bit cleaner.
This commit is contained in:
parent
144296f9c0
commit
1dc44703f1
|
@ -110,9 +110,9 @@ def pad_method_dict(method_dict: Dict[str, bool]) -> Dict[str, bool]:
|
|||
def auth_enabled_helper(backends_to_check: List[str], realm: Optional[Realm]) -> bool:
|
||||
if realm is not None:
|
||||
enabled_method_dict = realm.authentication_methods_dict()
|
||||
pad_method_dict(enabled_method_dict)
|
||||
else:
|
||||
enabled_method_dict = {method: True for method in Realm.AUTHENTICATION_FLAGS}
|
||||
|
||||
pad_method_dict(enabled_method_dict)
|
||||
for supported_backend in supported_auth_backends():
|
||||
for backend_name in backends_to_check:
|
||||
|
|
Loading…
Reference in New Issue