From 59f25aeffc717b73ca5fa6bf2fb97683a9d55c5f Mon Sep 17 00:00:00 2001 From: Luc Wallace <144689311+luc-wallace@users.noreply.github.com> Date: Fri, 1 Dec 2023 16:43:37 +0000 Subject: [PATCH] Remove accidental print statement --- pypartpicker/scraper.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pypartpicker/scraper.py b/pypartpicker/scraper.py index 329df11..b212e62 100644 --- a/pypartpicker/scraper.py +++ b/pypartpicker/scraper.py @@ -372,11 +372,8 @@ def fetch_product(self, part_url) -> Product: if review_box is not None: reviews = [] - count = 0 # counts stars in reviews for review in review_box.find_all(class_="partReviews__review"): - count += 1 - print(count) stars = 0 for _ in review.find(class_="shape-star-full"): stars += 1