🔇 Removed prints

This commit is contained in:
Mawoka
2022-03-09 18:52:10 +01:00
parent d38ca03750
commit b9da1b0492
2 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -77,8 +77,8 @@ async def update_quiz(quiz_id: str, quiz_input: QuizInput, user: User = Depends(
if quiz is None:
return JSONResponse(status_code=404, content={"detail": "quiz not found"})
else:
print(quiz_input)
print(quiz)
# print(quiz_input)
# print(quiz)
quiz.title = quiz_input.title
quiz.public = quiz_input.public
quiz.description = quiz_input.description