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()