From 700f07d3bb7ce755c3d10da1fbf47175bbf21b02 Mon Sep 17 00:00:00 2001 From: Mawoka Date: Sat, 25 Jun 2022 17:52:32 +0200 Subject: [PATCH] :ambulance: Fixed search --- classquiz/routers/search.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classquiz/routers/search.py b/classquiz/routers/search.py index 6fb1b5b..f62fe5f 100644 --- a/classquiz/routers/search.py +++ b/classquiz/routers/search.py @@ -17,7 +17,7 @@ class Hit(pydantic.BaseModel): title: str description: str user: str - imported_from_kahoot: bool + imported_from_kahoot: Optional[bool] formatted: Optional["Hit"] = pydantic.Field(None, alias="_formatted")