Fixed issue in pipeline

This commit is contained in:
2024-04-01 19:29:58 +02:00
parent 65c8203348
commit 172f47221c
2 changed files with 6 additions and 2 deletions

View File

@@ -9,6 +9,7 @@ from pydantic.json_schema import SkipJsonSchema
T = TypeVar("T")
# TODO: Add complete fastapi-pagination proxy here
# SkipJsonSchema is used to avoid generating invalid JSON schema in FastAPI
class Page(AbstractPage[T], Generic[T]):
results: Sequence[T]