ruff: Fix RUF025 Unnecessary dict comprehension for iterable.

This is a preview rule, not yet enabled by default.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
(cherry picked from commit 869d9d9a79)
This commit is contained in:
Anders Kaseorg
2024-02-29 18:05:22 -08:00
committed by Tim Abbott
parent c9964d1593
commit 9f02686885
2 changed files with 2 additions and 2 deletions

View File

@@ -165,7 +165,7 @@ def auth_enabled_helper(
else:
enabled_method_dict = realm.authentication_methods_dict()
else:
enabled_method_dict = {method: True for method in AUTH_BACKEND_NAME_MAP}
enabled_method_dict = dict.fromkeys(AUTH_BACKEND_NAME_MAP, True)
pad_method_dict(enabled_method_dict)
for supported_backend in supported_auth_backends():