Skip to content

Commit 429c89d

Browse files
committed
Remove hardcoded limit
1 parent c90d796 commit 429c89d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gkeep2notion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ def url2uuid(url: str) -> str:
434434
i = 0
435435
max_retries = 3 # Retry mechanism
436436
retry_delay = 2
437-
while i < 2056:
437+
while i < len(gnotes):
438438
gnote = gnotes[i]
439439
i += 1
440440
try:

0 commit comments

Comments
 (0)