Skip to content

Commit 079a77e

Browse files
committed
remove prints
1 parent 60eeb7c commit 079a77e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/famly_fetch/downloader.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ def download_images_from_feed(self, liked_by_ids: set[str]):
278278
older_than = last_item["createdDate"]
279279
for feed_item in response["feedItems"]:
280280
if not feed_item["originatorId"].startswith("Post:"):
281-
print("Skipping non-post feed item: ", feed_item["originatorId"])
281+
# not a Post item
282282
continue
283283
create_date = feed_item["createdDate"]
284284
for img_dict in feed_item["images"]:
@@ -290,9 +290,7 @@ def download_images_from_feed(self, liked_by_ids: set[str]):
290290
if like["loginId"] in liked_by_ids
291291
]
292292
):
293-
print(
294-
f"Skipping unliked image {img_dict['imageId']} in post at {create_date}"
295-
)
293+
# not liked by parents
296294
continue
297295
img = Image.from_dict(
298296
img_dict,

0 commit comments

Comments
 (0)