From c4dfa53958007376a682fbb9955277b3ca800d0b Mon Sep 17 00:00:00 2001 From: Nikita Babaev Date: Wed, 4 Dec 2024 20:08:18 +0400 Subject: [PATCH] Fixes because of the linter --- src/wordle/views.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/wordle/views.py b/src/wordle/views.py index 26125da..4820ce3 100644 --- a/src/wordle/views.py +++ b/src/wordle/views.py @@ -1,8 +1,10 @@ +# ruff: noqa: ERA001 + from typing import Annotated, Any, Dict from fastapi import APIRouter, Depends -from src.account.schemas import GameSessionResponse, GameSessionsResponse +from src.account.schemas import GameSessionResponse from src.account.services import create_new_game_session from src.auth.constants import API_RESPONSES from src.auth.dependencies import validate_access_token @@ -13,7 +15,7 @@ WordleResponseCheckWord, WordleResponseCheckWordFinish, ) -from src.wordle.services import check_word_service, get_all_user_gamesessions +from src.wordle.services import check_word_service router = APIRouter()