From 3ba0df7d0723a1fa039f70237a32020f760e7fae Mon Sep 17 00:00:00 2001 From: zach dwiel Date: Thu, 11 Oct 2018 20:03:10 -0400 Subject: [PATCH] update GraphManager.act specified return type --- rl_coach/graph_managers/graph_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rl_coach/graph_managers/graph_manager.py b/rl_coach/graph_managers/graph_manager.py index 3260d09..278d5f0 100644 --- a/rl_coach/graph_managers/graph_manager.py +++ b/rl_coach/graph_managers/graph_manager.py @@ -353,7 +353,7 @@ class GraphManager(object): [environment.reset_internal_state(force_environment_reset) for environment in self.environments] [manager.reset_internal_state() for manager in self.level_managers] - def act(self, steps: PlayingStepsType) -> (int, bool): + def act(self, steps: PlayingStepsType) -> None: """ Do several steps of acting on the environment :param steps: the number of steps as a tuple of steps time and steps count