Skip to content

Commit

Permalink
fix guthub action
Browse files Browse the repository at this point in the history
  • Loading branch information
YoannSab committed Jun 6, 2024
1 parent 222a355 commit 4d3722d
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 82 deletions.
2 changes: 0 additions & 2 deletions src/seahorse/game/action.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
from __future__ import annotations

from abc import abstractmethod
from typing import TYPE_CHECKING

from seahorse.utils.serializer import Serializable

class Action(Serializable):
Expand Down
2 changes: 0 additions & 2 deletions src/seahorse/game/game_state.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from abc import abstractmethod
from itertools import cycle
from typing import Any

from seahorse.game.action import Action
from seahorse.game.heavy_action import HeavyAction
from seahorse.game.light_action import LightAction
Expand Down Expand Up @@ -173,7 +172,6 @@ def apply_action(self, action: LightAction) -> "GameState":
"""
raise MethodNotImplementedError()

Check failure on line 174 in src/seahorse/game/game_state.py

View workflow job for this annotation

GitHub Actions / Linting (3.9)

Ruff (W293)

src/seahorse/game/game_state.py:174:1: W293 Blank line contains whitespace

@abstractmethod
def generate_possible_light_actions(self) -> set[LightAction]:
"""
Expand Down
78 changes: 0 additions & 78 deletions tests/utils/test_timer.py

This file was deleted.

0 comments on commit 4d3722d

Please sign in to comment.