We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2971673 commit b60615dCopy full SHA for b60615d
supafunc/_async/functions_client.py
@@ -10,7 +10,7 @@ class AsyncFunctionsClient:
10
def __init__(self, url: str, headers: Dict):
11
self.url = url
12
self.headers = {
13
- "User-Agent": f"supabase-py/storage3 v{__version__}",
+ "User-Agent": f"supabase-py/functions-py v{__version__}",
14
**headers,
15
}
16
supafunc/errors.py
@@ -32,7 +32,7 @@ def to_dict(self) -> FunctionsApiErrorDict:
32
33
class FunctionsHttpError(CustomFunctionsError):
34
def __init__(self, message: str) -> None:
35
- CustomFunctionsError.__init__(
+ super().__init__(
36
self,
37
message,
38
"FunctionsHttpError",
0 commit comments