Skip to content

Commit

Permalink
typing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
igorbenav committed Sep 16, 2024
1 parent 59a3288 commit d2f4a29
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fastcrud/endpoint/endpoint_creator.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ async def endpoint(
)
return paginated_response(
crud_data=crud_data,
page=page,
page=page, # type: ignore
items_per_page=items_per_page, # type: ignore
)

Expand All @@ -378,9 +378,9 @@ async def endpoint(

crud_data = await self.crud.get_multi(
db,
offset=offset,
limit=limit,
**filters, # type: ignore
offset=offset, # type: ignore
limit=limit, # type: ignore
**filters,
)
return crud_data # pragma: no cover

Expand Down

0 comments on commit d2f4a29

Please sign in to comment.