We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 172b078 commit a7c4413Copy full SHA for a7c4413
src/decision_makers/play_on_decision_maker.py
@@ -22,6 +22,8 @@ def __init__(self):
22
pass
23
24
def make_decision(self, agent: IAgent):
25
+ from src.sample_player_agent import SamplePlayerAgent # Local import to avoid circular import
26
+ assert isinstance(agent, SamplePlayerAgent)
27
if agent.wm.self.is_kickable:
28
self.kick_decision_maker.make_decision(agent)
29
else:
0 commit comments