Skip to content

Commit 357a8fe

Browse files
committed
remove print
1 parent b1d4d9e commit 357a8fe

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

bandwidth/configuration.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,6 @@ 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_expires_at}, token: {self.temp_access_token}")
536535
if self.temp_access_token and self.temp_access_token_expires_at > now + 60:
537536
return self.temp_access_token
538537
else:

custom_templates/configuration.mustache

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,6 @@ conf = {{{packageName}}}.Configuration(
643643
:return: The token for bearer HTTP authentication.
644644
"""
645645
now = int(time.time())
646-
print(f"now: {now}, exp: {self.temp_access_token}, token: {self.temp_access_token_expires_at}")
647646
if self.temp_access_token and self.temp_access_token_expires_at > now + 60:
648647
return self.temp_access_token
649648
else:

0 commit comments

Comments
 (0)