diff --git a/src/primaite/game/agent/rewards.py b/src/primaite/game/agent/rewards.py index 86a61535..3d61c0b4 100644 --- a/src/primaite/game/agent/rewards.py +++ b/src/primaite/game/agent/rewards.py @@ -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