Skip to content

Commit 13ea06f

Browse files
stainless-app[bot]stainless-bot
authored andcommitted
chore: fix error message import example (#268)
1 parent fbcc2c3 commit 13ea06f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python_intercom/_base_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ def __init__(
363363

364364
if max_retries is None: # pyright: ignore[reportUnnecessaryComparison]
365365
raise TypeError(
366-
"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 `python-intercom.DEFAULT_MAX_RETRIES`"
366+
"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 `python_intercom.DEFAULT_MAX_RETRIES`"
367367
)
368368

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

0 commit comments

Comments
 (0)