Skip to content

Commit

Permalink
replace f-string with format method
Browse files Browse the repository at this point in the history
  • Loading branch information
enkidulan committed May 23, 2024
1 parent a217154 commit f650691
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pycrunch/elements.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,4 +389,4 @@ def __init__(

if self.token:
# Use Bearer token for authentication
self.headers.update({"Authorization": f"Bearer {self.token}"})
self.headers.update({"Authorization": "Bearer {}".format(self.token)})

0 comments on commit f650691

Please sign in to comment.