From dcacf6efae5b96ea39c11111cfff165ed3d40dde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacob=20S=C3=A1nchez?= Date: Thu, 4 Jan 2024 10:57:16 +0000 Subject: [PATCH] Remove unnecessary call to print --- tiny_api_client/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tiny_api_client/__init__.py b/tiny_api_client/__init__.py index 869be90..f638cb6 100644 --- a/tiny_api_client/__init__.py +++ b/tiny_api_client/__init__.py @@ -268,7 +268,6 @@ def request_wrapper(self: Any, /, :param list args: Passed to the function being wrapped :param dict kwargs: Any kwargs are passed to requests """ - print(kwargs) response = make_api_call(method, self, endpoint, **kwargs) return func(self, response, *args) return request_wrapper