isort fixes

This commit is contained in:
SwiftyOS
2024-09-20 12:35:53 +02:00
parent 9d7dfb0a6d
commit ff11d00f74
4 changed files with 7 additions and 3 deletions

View File

@@ -1,8 +1,9 @@
# pyright: reportMissingImports=false
import pytest
from .abstract_class import ShipPlacement, Turn
from battleship import Battleship
from .abstract_class import ShipPlacement, Turn
@pytest.fixture
def battleship_game():

View File

@@ -1,7 +1,8 @@
import pytest
from .abstract_class import ShipPlacement, Turn
from pydantic import ValidationError
from .abstract_class import ShipPlacement, Turn
def test_ship_placement_out_of_bounds(battleship_game):
game_id = battleship_game.create_game()

View File

@@ -1,4 +1,5 @@
import pytest
from .abstract_class import ShipPlacement, Turn
from .battleship import Battleship

View File

@@ -1,7 +1,8 @@
import pytest
from .abstract_class import ShipPlacement, Turn
from pydantic import ValidationError
from .abstract_class import ShipPlacement, Turn
def test_ship_placement_out_of_bounds(battleship_game):
game_id = battleship_game.create_game()