Skip to content

Commit b6cf60b

Browse files
chore(internal): minor refactoring of client instantiation
1 parent 42fcf7c commit b6cf60b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/finch/_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def __init__(
8989
"""
9090

9191
if base_url is None:
92-
base_url = "https://api.tryfinch.com"
92+
base_url = f"https://api.tryfinch.com"
9393

9494
super().__init__(
9595
version=__version__,
@@ -310,7 +310,7 @@ def __init__(
310310
"""
311311

312312
if base_url is None:
313-
base_url = "https://api.tryfinch.com"
313+
base_url = f"https://api.tryfinch.com"
314314

315315
super().__init__(
316316
version=__version__,

0 commit comments

Comments
 (0)