mirror of
https://github.com/zulip/zulip.git
synced 2025-11-16 11:52:01 +00:00
ruff: Fix RUF010 Use conversion in f-string.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
0c09a4fffe
commit
9797de52a0
@@ -1171,7 +1171,7 @@ Output:
|
||||
for item in items:
|
||||
print(item)
|
||||
print(f"\nexpected length: {count}\nactual length: {actual_count}")
|
||||
raise AssertionError(f"{str(type(items))} is of unexpected size!")
|
||||
raise AssertionError(f"{type(items)} is of unexpected size!")
|
||||
|
||||
@contextmanager
|
||||
def assert_database_query_count(
|
||||
|
||||
Reference in New Issue
Block a user