🚨 Fix linting errors

This commit is contained in:
SavagePastaMan
2022-09-29 20:42:06 -04:00
parent 9fde815d8a
commit 58a548f8a0
5 changed files with 30 additions and 9 deletions
+2 -2
View File
@@ -11,9 +11,9 @@ import socketio
from cryptography.fernet import Fernet
from classquiz.config import redis, settings
from classquiz.db.models import PlayGame, QuizQuestionType, GameSession, GamePlayer, RangeQuizAnswer, QuizQuestion
from classquiz.db.models import PlayGame, QuizQuestionType, GameSession, GamePlayer, QuizQuestion
from pydantic import BaseModel, ValidationError, validator
from datetime import timedelta, datetime
from datetime import datetime
sio = socketio.AsyncServer(async_mode="asgi", cors_allowed_origins=[])
settings = settings()