From 85360234e2f69d39d2274475b2bff4e13e4cd47d Mon Sep 17 00:00:00 2001 From: Vishal Pachpinde Date: Mon, 27 Jan 2025 15:38:08 +0530 Subject: [PATCH] Remove print exception for graphQL --- shopify/resources/graphql.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/shopify/resources/graphql.py b/shopify/resources/graphql.py index 33525ef1..0772acea 100644 --- a/shopify/resources/graphql.py +++ b/shopify/resources/graphql.py @@ -27,6 +27,4 @@ def execute(self, query, variables=None, operation_name=None): response = urllib.request.urlopen(req) return response.read().decode("utf-8") except urllib.error.HTTPError as e: - print((e.read())) - print("") raise e