Skip to content

Commit 8afb5ac

Browse files
committed
remove print
1 parent 310d51f commit 8afb5ac

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

bandwidth/configuration.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,6 @@ def get_access_token(self) -> str:
535535
if self.temp_access_token and self.temp_access_token_expiration > now + 60:
536536
return self.temp_access_token
537537
else:
538-
print("Fetching new access token")
539538
_bytes = f"{self.client_id}:{self.client_secret}".encode('utf-8')
540539
_encoded_string = base64.b64encode(_bytes).decode('utf-8')
541540
auth_header = f"Basic {_encoded_string}"

0 commit comments

Comments
 (0)