Skip to content

Commit

Permalink
Fix import ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
rrthomas committed Jan 1, 2025
1 parent 7fa2050 commit fc536b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wincoll/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
import sys
from typing import List

from . import wincoll_game
from chambercourt.game import app_main

from . import wincoll_game


def main(argv: List[str] = sys.argv[1:]) -> None:
app_main(argv, wincoll_game, wincoll_game.WincollGame)
Expand Down

0 comments on commit fc536b4

Please sign in to comment.