Skip to content

Commit

Permalink
fix: wrong returning object in search_titles
Browse files Browse the repository at this point in the history
  • Loading branch information
Damego committed Feb 9, 2023
1 parent a882f62 commit e2f9e15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion anilibria/client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ async def search_titles(
items_per_page=items_per_page,
)
data = await self._http.search_titles(**payload)
return converter.structure(data, list[Title])
return converter.structure(data, ListPagination)

async def advanced_search(
self,
Expand Down

0 comments on commit e2f9e15

Please sign in to comment.