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 310d51f commit 8afb5acCopy full SHA for 8afb5ac
bandwidth/configuration.py
@@ -535,7 +535,6 @@ def get_access_token(self) -> str:
535
if self.temp_access_token and self.temp_access_token_expiration > now + 60:
536
return self.temp_access_token
537
else:
538
- print("Fetching new access token")
539
_bytes = f"{self.client_id}:{self.client_secret}".encode('utf-8')
540
_encoded_string = base64.b64encode(_bytes).decode('utf-8')
541
auth_header = f"Basic {_encoded_string}"
0 commit comments