mirror of https://github.com/zulip/zulip.git
ruff: Fix SIM300 Yoda conditions are discouraged.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
b85cb1e700
commit
5b7c4206d7
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue