Skip to content

Commit

Permalink
Update .pre-commit-config.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
juancarlospaco committed May 4, 2024
1 parent d0757be commit e2470f0
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions supabase_auth/_async/gotrue_base_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ async def _request(
body: Union[Any, None] = None,
no_resolve_json: Literal[False] = False,
xform: Callable[[Any], T],
) -> T:
... # pragma: no cover
) -> T: ... # pragma: no cover

@overload
async def _request(
Expand All @@ -62,8 +61,7 @@ async def _request(
body: Union[Any, None] = None,
no_resolve_json: Literal[True],
xform: Callable[[Response], T],
) -> T:
... # pragma: no cover
) -> T: ... # pragma: no cover

@overload
async def _request(
Expand All @@ -77,8 +75,7 @@ async def _request(
query: Union[Dict[str, str], None] = None,
body: Union[Any, None] = None,
no_resolve_json: bool = False,
) -> None:
... # pragma: no cover
) -> None: ... # pragma: no cover

async def _request(
self,
Expand Down

0 comments on commit e2470f0

Please sign in to comment.