Skip to content

Commit f1b19fe

Browse files
committed
drop item count to 5 to see if it helps with failed GH Actions runs
1 parent 28acb0a commit f1b19fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

postprocessing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# Custom Domain
1212
ghPagesURL = "https://tiktokrss.conoroneill.com/"
1313

14-
count = 10
14+
maxItems = 5
1515

1616
with open('subscriptions.csv') as f:
1717
cf = csv.DictReader(f, fieldnames=['username'])
@@ -40,7 +40,7 @@
4040
tiktokuser = api.user(csvuser)
4141
i = 0
4242
for video in tiktokuser.videos:
43-
if i >= 10:
43+
if i >= maxItems:
4444
break
4545
i = i + 1
4646
# print(video.create_time, video.desc)

0 commit comments

Comments
 (0)