diff --git a/safeway_coupons/client.py b/safeway_coupons/client.py index a03f15b..e4bab1f 100644 --- a/safeway_coupons/client.py +++ b/safeway_coupons/client.py @@ -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