Skip to content

Commit

Permalink
Remove useless trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
smkent committed Nov 1, 2023
1 parent 224bd16 commit 90299c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion safeway_coupons/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def get_offers(self) -> List[Offer]:
"https://www.safeway.com/abs/pub/xapi"
"/offers/companiongalleryoffer"
f"?storeId={self.session.store_id}"
f"&rand={random.randrange(100000,999999)}",
f"&rand={random.randrange(100000,999999)}"
)
response.raise_for_status()
return OfferList.from_dict(response.json()).offers
Expand Down

0 comments on commit 90299c6

Please sign in to comment.