From dc96b72210ea14703cca74ba03187dc47695885d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Richard=20Kub=C3=AD=C4=8Dek?= Date: Mon, 13 Jan 2025 19:17:55 +0100 Subject: [PATCH] Remove some debug --- superfaktura/api.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/superfaktura/api.py b/superfaktura/api.py index 9b06925..d48227e 100644 --- a/superfaktura/api.py +++ b/superfaktura/api.py @@ -22,7 +22,5 @@ class SuperFakturaAPI: def post(self, endpoint: str, data: dict) -> Dict: url = f"{self._api_url}/{endpoint}" - print(url) - print(data) req = requests.post(url=url, headers=self._auth_header, data=data) return req.json()