Skip to content

Commit

Permalink
Remove accidental print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
luc-wallace committed Dec 1, 2023
1 parent a05d947 commit 59f25ae
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions pypartpicker/scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 59f25ae

Please sign in to comment.