Skip to content

Commit c81fdb7

Browse files
chore: fix error message import example (#450)
1 parent a5c914c commit c81fdb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/finch/_base_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ def __init__(
364364

365365
if max_retries is None: # pyright: ignore[reportUnnecessaryComparison]
366366
raise TypeError(
367-
"max_retries cannot be None. If you want to disable retries, pass `0`; if you want unlimited retries, pass `math.inf` or a very high number; if you want the default behavior, pass `finch-api.DEFAULT_MAX_RETRIES`"
367+
"max_retries cannot be None. If you want to disable retries, pass `0`; if you want unlimited retries, pass `math.inf` or a very high number; if you want the default behavior, pass `finch.DEFAULT_MAX_RETRIES`"
368368
)
369369

370370
def _enforce_trailing_slash(self, url: URL) -> URL:

0 commit comments

Comments
 (0)