Skip to content

Commit

Permalink
mypy bug workaround (python/mypy#9319)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dani Reinón committed Jan 4, 2022
1 parent e6310c5 commit 790811f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions postgrest_py/_async/request_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ async def execute(self) -> Tuple[Any, Optional[int]]:
return APIResponse.from_http_request_response(r)


class AsyncFilterRequestBuilder(BaseFilterRequestBuilder, AsyncQueryRequestBuilder):
class AsyncFilterRequestBuilder(BaseFilterRequestBuilder, AsyncQueryRequestBuilder): # type: ignore
def __init__(
self,
session: AsyncClient,
Expand All @@ -49,7 +49,7 @@ def __init__(
AsyncQueryRequestBuilder.__init__(self, session, path, http_method, json)


class AsyncSelectRequestBuilder(BaseSelectRequestBuilder, AsyncQueryRequestBuilder):
class AsyncSelectRequestBuilder(BaseSelectRequestBuilder, AsyncQueryRequestBuilder): # type: ignore
def __init__(
self,
session: AsyncClient,
Expand Down

0 comments on commit 790811f

Please sign in to comment.