From 40a1c40d1f18d23fffed9c4d855c56c9785b120a Mon Sep 17 00:00:00 2001 From: Sheepposu Date: Wed, 1 May 2024 20:14:11 -0400 Subject: [PATCH] remove debug print statement --- osu/auth.py | 1 - 1 file changed, 1 deletion(-) diff --git a/osu/auth.py b/osu/auth.py index cf820fe..71235a2 100644 --- a/osu/auth.py +++ b/osu/auth.py @@ -286,7 +286,6 @@ async def _request(self, data, is_refresh=False): try: resp.raise_for_status() except Exception as e: - print(data) raise e json = await resp.json() self._handle_response(json)