Skip to content

Commit

Permalink
forgotten union using |
Browse files Browse the repository at this point in the history
  • Loading branch information
honzajavorek committed Dec 28, 2024
1 parent 3a5fcf0 commit 623062f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fiobank.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def __init__(self, token: str, decimal=False):
stop=stop_after_attempt(3),
wait=wait_random_exponential(max=2 * 60),
)
def _request(self, action: str, **params) -> dict | None:
def _request(self, action: str, **params) -> "dict | None":
url_template = self.base_url + self.actions[action]
url = url_template.format(token=self.token, **params)

Expand Down

0 comments on commit 623062f

Please sign in to comment.