Don't print credentials

This commit is contained in:
2025-11-20 03:21:58 +01:00
parent 308d9ffbe6
commit d66a7159b7

View File

@@ -85,8 +85,6 @@ class _CoreNetworksAPIClient:
return self.token return self.token
try: try:
print(self.username)
print(self.password)
response = requests.post( response = requests.post(
f"{API_BASE_URL}/auth/token", f"{API_BASE_URL}/auth/token",
json={"login": self.username, "password": self.password}, json={"login": self.username, "password": self.password},