Skip to content

Commit 0996419

Browse files
committed
Remove arg name usage in Ibis .head() method call
1 parent d1022c6 commit 0996419

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
@@ -522,7 +522,7 @@ def _generate_display_table(
522522
row_number_list = range(1, n_rows + 1)
523523
else:
524524
# Get the first and last n rows of the table
525-
data_head = data.head(n=n_head)
525+
data_head = data.head(n_head)
526526
row_numbers_head = range(1, n_head + 1)
527527
data_tail = data[(n_rows - n_tail) : n_rows]
528528
row_numbers_tail = range(n_rows - n_tail + 1, n_rows + 1)

0 commit comments

Comments
 (0)