Skip to content

Commit 65f4b99

Browse files
committed
Remove unneeded comment
1 parent 80d32bd commit 65f4b99

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pointblank/validate.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -560,8 +560,7 @@ def _generate_display_table(
560560
if row_number_list is None:
561561
row_number_list = range(1, n_rows + 1)
562562
else:
563-
# Get the first and last n rows of the table
564-
# data_tail = covid_stats.filter([ibis.row_number() >= (n_rows - n_tail), ibis.row_number() <= n_rows])
563+
# Get the first n and last n rows of the table
565564
data_head = data.head(n_head)
566565
data_tail = data.filter(
567566
[ibis.row_number() >= (n_rows - n_tail), ibis.row_number() <= n_rows]

0 commit comments

Comments
 (0)