Skip to content

Commit f540e37

Browse files
committed
fix: update deprecation message
1 parent 9a00193 commit f540e37

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

supabase_functions/_async/functions_client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,19 @@ def __init__(
3434

3535
if timeout is not None:
3636
warn(
37-
"The 'timeout' parameter is deprecated. Please configure it in the httpx client instead.",
37+
"The 'timeout' parameter is deprecated. Please configure it in the http client instead.",
3838
DeprecationWarning,
3939
stacklevel=2,
4040
)
4141
if verify is not None:
4242
warn(
43-
"The 'verify' parameter is deprecated. Please configure it in the httpx client instead.",
43+
"The 'verify' parameter is deprecated. Please configure it in the http client instead.",
4444
DeprecationWarning,
4545
stacklevel=2,
4646
)
4747
if proxy is not None:
4848
warn(
49-
"The 'proxy' parameter is deprecated. Please configure it in the httpx client instead.",
49+
"The 'proxy' parameter is deprecated. Please configure it in the http client instead.",
5050
DeprecationWarning,
5151
stacklevel=2,
5252
)

supabase_functions/_sync/functions_client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,19 +34,19 @@ def __init__(
3434

3535
if timeout is not None:
3636
warn(
37-
"The 'timeout' parameter is deprecated. Please configure it in the httpx client instead.",
37+
"The 'timeout' parameter is deprecated. Please configure it in the http client instead.",
3838
DeprecationWarning,
3939
stacklevel=2,
4040
)
4141
if verify is not None:
4242
warn(
43-
"The 'verify' parameter is deprecated. Please configure it in the httpx client instead.",
43+
"The 'verify' parameter is deprecated. Please configure it in the http client instead.",
4444
DeprecationWarning,
4545
stacklevel=2,
4646
)
4747
if proxy is not None:
4848
warn(
49-
"The 'proxy' parameter is deprecated. Please configure it in the httpx client instead.",
49+
"The 'proxy' parameter is deprecated. Please configure it in the http client instead.",
5050
DeprecationWarning,
5151
stacklevel=2,
5252
)

0 commit comments

Comments
 (0)