Skip to content

Commit adb43a5

Browse files
feat: rewriting str as Enums
1 parent 9c49df3 commit adb43a5

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

supabase_functions/_sync/functions_client.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
from typing import Any, Dict, Literal, Optional, Union
2+
from warnings import warn
23

34
from httpx import HTTPError, Response
45

56
from ..errors import FunctionsHttpError, FunctionsRelayError
6-
from ..utils import SyncClient, is_http_url, is_valid_jwt, is_valid_str_arg, FunctionRegion
7+
from ..utils import (
8+
FunctionRegion,
9+
SyncClient,
10+
is_http_url,
11+
is_valid_jwt,
12+
is_valid_str_arg,
13+
)
714
from ..version import __version__
8-
from warnings import warn
915

1016

1117
class SyncFunctionsClient:

0 commit comments

Comments
 (0)