Skip to content

Commit f34a331

Browse files
committed
Fix ruff errors
1 parent 1bfa8b1 commit f34a331

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

python/tests/test_dataframe.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1367,9 +1367,9 @@ def test_min_table_rows_display(ctx):
13671367
row_count = html_output.count("<tr>") - 1 # subtract 1 for the header row
13681368

13691369
# Verify at least min_table_rows rows are displayed
1370-
assert (
1371-
row_count >= custom_min_rows
1372-
), f"Expected at least {custom_min_rows} rows, got {row_count}"
1370+
assert row_count >= custom_min_rows, (
1371+
f"Expected at least {custom_min_rows} rows, got {row_count}"
1372+
)
13731373

13741374
# If data was truncated, "Data truncated" message should be present
13751375
if row_count < rows:

0 commit comments

Comments
 (0)