remove extra print statement

This commit is contained in:
Marek Wolan
2024-03-12 11:00:55 +00:00
parent a76f5b0efb
commit 03ee976a2d

View File

@@ -353,7 +353,6 @@ class SharedReward(AbstractReward):
def calculate(self, state: Dict, last_action_response: "AgentActionHistoryItem") -> float:
"""Simply access the other agent's reward and return it."""
print(self.callback(), self.agent_name)
return self.callback()
@classmethod