Skip to content

Commit e514383

Browse files
committed
Correct return typing
1 parent 86ae26e commit e514383

File tree

1 file changed

+1
-1
lines changed
  • futuramaapi/routers/rest/users

1 file changed

+1
-1
lines changed

futuramaapi/routers/rest/users/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ async def search_user(
187187
),
188188
] = None,
189189
session: AsyncSession = Depends(get_async_session), # noqa: B008
190-
) -> UserSearchResponse:
190+
) -> Page[UserSearchResponse]:
191191
filter_params: FilterStatementKwargs = FilterStatementKwargs(
192192
offset=0,
193193
limit=20,

0 commit comments

Comments
 (0)