Skip to content

Commit

Permalink
style: run format script
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnans2006 committed Feb 18, 2024
1 parent f7ccb0f commit c949c83
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion othello/apps/tournaments/pairings.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from typing import List, Tuple

from othello.apps.tournaments.models import TournamentPlayer
from othello.apps.tournaments.utils import get_updated_ranking, logger, chunks
from othello.apps.tournaments.utils import chunks, get_updated_ranking, logger

Players = List[TournamentPlayer]
Pairings = List[Tuple[TournamentPlayer, ...]]
Expand Down
2 changes: 1 addition & 1 deletion othello/apps/tournaments/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
from ..games.tasks import Player, run_game
from .emails import email_send
from .models import Tournament, TournamentGame, TournamentPlayer
from .utils import chunks, get_updated_ranking
from .pairings import pair
from .utils import chunks, get_updated_ranking

logger = logging.getLogger("othello")

Expand Down
2 changes: 1 addition & 1 deletion othello/apps/tournaments/utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import logging
from typing import TypeVar, Iterator, Tuple, Iterable
from typing import Iterable, Iterator, Tuple, TypeVar

from .models import TournamentPlayer

Expand Down

0 comments on commit c949c83

Please sign in to comment.