From 77bb7aa1615ad9a8ba192fefe585e51580f9166b Mon Sep 17 00:00:00 2001 From: Omar Date: Thu, 28 May 2026 16:25:41 +0300 Subject: [PATCH] Remove debugging statement from line 468 --- main.py | 1 - 1 file changed, 1 deletion(-) diff --git a/main.py b/main.py index fd582a1..a1745f0 100644 --- a/main.py +++ b/main.py @@ -465,7 +465,6 @@ async def get_scrape_url(store_url: str, session: AsyncSession) -> str: if not products_endpoint: try: - print(base_url + "/" if base_url[-1] != "/" else "") res = await session.get(base_url + "/" if base_url[-1] != "/" else "") # Use regex to find the .myshopify.com/products.json URL of the Shopify store in case the normal /products.json is blocked.