Skip to content

Commit 69d4a9d

Browse files
committed
Progress
1 parent 0c43886 commit 69d4a9d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/_notion_scripts/upload.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,7 @@ def _find_last_matching_block_index(
9494
blocks match.
9595
"""
9696
last_matching_index: int | None = None
97-
for index, existing_page_block in enumerate(
98-
iterable=existing_blocks, start=0
99-
):
97+
for index, existing_page_block in enumerate(iterable=existing_blocks):
10098
click.echo(
10199
message=(
102100
f"Checking block {index + 1} of {len(existing_blocks)} for "

0 commit comments

Comments
 (0)