Skip to content

Commit 1a65ced

Browse files
Fix #814
1 parent 3515be1 commit 1a65ced

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

supabase/_async/client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,9 @@ def functionTimeout(self, timeout: int):
185185
"""Set function timeout"""
186186
if self._functions:
187187
assert timeout > 0, "Timeout must be positive." # No negative timeout.
188-
self._functions._client.timeout = min(int(timeout), 150) # >150 returns HTTP-504.
188+
self._functions._client.timeout = min(
189+
int(timeout), 150
190+
) # >150 returns HTTP-504.
189191

190192
# async def remove_subscription_helper(resolve):
191193
# try:

0 commit comments

Comments
 (0)