We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09f59eb commit 2f74891Copy full SHA for 2f74891
quotientai/resources/auth.py
@@ -14,10 +14,6 @@ def authenticate(self):
14
# Set the user_id if successful
15
if response and isinstance(response, dict) and "user_id" in response:
16
self._client._user = response["user_id"]
17
- print(f"✅ Authentication successful! User ID set to: {response['user_id']}")
18
- else:
19
- # Print what we got for debugging
20
- print(f"❌ Authentication response missing user_id. Response: {response}")
21
22
return response
23
0 commit comments