From b115c0b55a656e2b06ff03a84702a44100b27403 Mon Sep 17 00:00:00 2001 From: Stephen Kent Date: Wed, 1 Nov 2023 10:48:49 -0700 Subject: [PATCH] Remove useless trailing comma --- safeway_coupons/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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