Skip to content

Commit 73eca63

Browse files
committed
Fix Black formatting
1 parent 451ed2f commit 73eca63

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

tests/test_020_multithreaded_stress.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -502,15 +502,13 @@ def worker(thread_id: int):
502502
table_name = f"#stress_t{thread_id}"
503503
drop_table_if_exists(cursor, table_name)
504504

505-
cursor.execute(
506-
f"""
505+
cursor.execute(f"""
507506
CREATE TABLE {table_name} (
508507
id INT PRIMARY KEY,
509508
thread_id INT,
510509
data NVARCHAR(100)
511510
)
512-
"""
513-
)
511+
""")
514512
conn.commit()
515513

516514
# Perform iterations

0 commit comments

Comments
 (0)