ruff: Fix SIM300 Yoda conditions are discouraged.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2023-01-27 15:59:59 -08:00 committed by Anders Kaseorg
parent b85cb1e700
commit 5b7c4206d7
2 changed files with 2 additions and 2 deletions

View File

@ -331,7 +331,7 @@ def sanity_check_output(data: TableData) -> None:
in {__file__} for what to include in data exports.
"""
assert ALL_ZULIP_TABLES == all_tables_db, error_message
assert all_tables_db == ALL_ZULIP_TABLES, error_message
assert NON_EXPORTED_TABLES.issubset(ALL_ZULIP_TABLES), error_message
assert IMPLICIT_TABLES.issubset(ALL_ZULIP_TABLES), error_message
assert ATTACHMENT_TABLES.issubset(ALL_ZULIP_TABLES), error_message

View File

@ -779,7 +779,7 @@ def login_page(
next: str = REQ(default="/"),
**kwargs: Any,
) -> HttpResponse:
if settings.SOCIAL_AUTH_SUBDOMAIN == get_subdomain(request):
if get_subdomain(request) == settings.SOCIAL_AUTH_SUBDOMAIN:
return social_auth_subdomain_login_page(request)
# To support previewing the Zulip login pages, we have a special option