mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-04-08 03:00:28 -04:00
isort fixes
This commit is contained in:
@@ -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():
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import pytest
|
||||
|
||||
from .abstract_class import ShipPlacement, Turn
|
||||
from .battleship import Battleship
|
||||
|
||||
|
||||
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user