We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d1022c6 + 0996419 commit 348d7bfCopy full SHA for 348d7bf
pointblank/validate.py
@@ -522,7 +522,7 @@ def _generate_display_table(
522
row_number_list = range(1, n_rows + 1)
523
else:
524
# Get the first and last n rows of the table
525
- data_head = data.head(n=n_head)
+ data_head = data.head(n_head)
526
row_numbers_head = range(1, n_head + 1)
527
data_tail = data[(n_rows - n_tail) : n_rows]
528
row_numbers_tail = range(n_rows - n_tail + 1, n_rows + 1)
0 commit comments