Skip to content

Commit b1d4d9e

Browse files
committed
fix print
1 parent eafffd2 commit b1d4d9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bandwidth/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ def get_access_token(self) -> str:
532532
:return: The token for bearer HTTP authentication.
533533
"""
534534
now = int(time.time())
535-
print(f"now: {now}, exp: {self.temp_access_token}, token: {self.temp_access_token_expires_at}")
535+
print(f"now: {now}, exp: {self.temp_access_token_expires_at}, token: {self.temp_access_token}")
536536
if self.temp_access_token and self.temp_access_token_expires_at > now + 60:
537537
return self.temp_access_token
538538
else:

0 commit comments

Comments
 (0)