Skip to content

Commit e2c52d4

Browse files
committed
Merge branch 'main' into feat-missing-val-report-table
2 parents f0aba63 + 348d7bf commit e2c52d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pointblank/validate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ def _generate_display_table(
530530
row_number_list = range(1, n_rows + 1)
531531
else:
532532
# Get the first and last n rows of the table
533-
data_head = data.head(n=n_head)
533+
data_head = data.head(n_head)
534534
row_numbers_head = range(1, n_head + 1)
535535
data_tail = data[(n_rows - n_tail) : n_rows]
536536
row_numbers_tail = range(n_rows - n_tail + 1, n_rows + 1)

0 commit comments

Comments
 (0)