#2912 - Removal of todo and updated actions __init__.py

This commit is contained in:
Charlie Crane
2024-11-15 17:47:58 +00:00
parent 0439c3159e
commit 958502d055
2 changed files with 1 additions and 5 deletions

View File

@@ -14,7 +14,6 @@ from primaite.game.agent.actions import (
service,
session,
)
from primaite.game.agent.actions.manager import ActionManager
__all__ = (
"abstract",
@@ -29,5 +28,4 @@ __all__ = (
"node",
"service",
"session",
"ActionManager",
)

View File

@@ -22,9 +22,7 @@ from gymnasium import spaces
from primaite.game.agent.actions.abstract import AbstractAction
from primaite.interface.request import RequestFormat
# TODO: Make sure that actions are backwards compatible where the old YAML format is used.
__all__ = "DoNothingAction"
__all__ = ("DoNothingAction", "ActionManager")
class DoNothingAction(AbstractAction, identifier="do_nothing"):