billdeitrick / pypco

A Python client for the Planning Center Online API.
MIT License
39 stars 13 forks source link

migrate "str".format() to more readable f string #56

Closed 07pepa closed 1 year ago

07pepa commented 2 years ago

this is super small and more for sake of readability

i found

"Bearer {}".format(self.token)

more harder to read then

f"Bearer {self.token}"
billdeitrick commented 1 year ago

@07pepa Thanks for this! #58 merged!