Skip to content

Commit ee794b5

Browse files
committed
Fix Black 26.1.0 formatting (multi-line string style change)
1 parent aa36078 commit ee794b5

1 file changed

Lines changed: 4 additions & 8 deletions

File tree

tests/test_001_globals.py

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -388,8 +388,7 @@ def test_decimal_separator_with_db_operations(db_connection):
388388
try:
389389
# Create a test table with decimal values
390390
cursor = db_connection.cursor()
391-
cursor.execute(
392-
"""
391+
cursor.execute("""
393392
DROP TABLE IF EXISTS #decimal_separator_test;
394393
CREATE TABLE #decimal_separator_test (
395394
id INT,
@@ -400,8 +399,7 @@ def test_decimal_separator_with_db_operations(db_connection):
400399
(2, 678.90),
401400
(3, 0.01),
402401
(4, 999.99);
403-
"""
404-
)
402+
""")
405403
cursor.close()
406404

407405
# Test 1: Fetch with default separator
@@ -469,8 +467,7 @@ def test_decimal_separator_batch_operations(db_connection):
469467
try:
470468
# Create test data
471469
cursor = db_connection.cursor()
472-
cursor.execute(
473-
"""
470+
cursor.execute("""
474471
DROP TABLE IF EXISTS #decimal_batch_test;
475472
CREATE TABLE #decimal_batch_test (
476473
id INT,
@@ -481,8 +478,7 @@ def test_decimal_separator_batch_operations(db_connection):
481478
(1, 123.456, 12345.67890),
482479
(2, 0.001, 0.00001),
483480
(3, 999.999, 9999.99999);
484-
"""
485-
)
481+
""")
486482
cursor.close()
487483

488484
# Test 1: Fetch results with default separator

0 commit comments

Comments
 (0)