Skip to content

Commit

Permalink
Fix: String formatting does not work like in C#
Browse files Browse the repository at this point in the history
  • Loading branch information
erenes committed Apr 10, 2021
1 parent 96fa301 commit 2a39719
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bananas_cli/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
class Session:
def __init__(self, api_url, tus_url):
self.session = None
self.api_url = f"${api_url}/"
self.tus_url = f"${tus_url}/"
self.api_url = f"{api_url}/"
self.tus_url = f"{tus_url}/"

self._headers = {}

Expand Down

0 comments on commit 2a39719

Please sign in to comment.