From c795e3af3ccb812c5334aae2befef4bea917fc8b Mon Sep 17 00:00:00 2001 From: Kingu Date: Fri, 26 Jun 2020 00:48:03 +0200 Subject: [PATCH] Removed some development limits (90 clips only) --- start.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start.py b/start.py index c6be05b..a17a94c 100644 --- a/start.py +++ b/start.py @@ -25,7 +25,7 @@ import progress appname = "Notion Clippings" -version = "1.0.0" +version = "1.0.1" #Configuration load config = configparser.ConfigParser() @@ -107,7 +107,7 @@ def clipExists(clips, row): #Development only: used to trim clippings size to a reasonable level for testing -clips = clips[:90] +# clips = clips[:90] #Iterate Notion collection (rows) print(f"Comparing items")