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