Skip to content

Commit

Permalink
Fixes because of the linter
Browse files Browse the repository at this point in the history
  • Loading branch information
MRossa157 committed Dec 4, 2024
1 parent 7a1f02f commit c4dfa53
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/wordle/views.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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()

Expand Down

0 comments on commit c4dfa53

Please sign in to comment.