From 5c70faf76be0039a893052f15e4005733492e5d0 Mon Sep 17 00:00:00 2001 From: Eric Liang Date: Tue, 19 Sep 2017 10:10:56 -0700 Subject: [PATCH] Update common.py (#996) --- python/ray/rllib/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/rllib/common.py b/python/ray/rllib/common.py index 8c003316e..23b6e6da0 100644 --- a/python/ray/rllib/common.py +++ b/python/ray/rllib/common.py @@ -141,8 +141,8 @@ class Agent(object): """ start = time.time() - self.iteration += 1 result = self._train() + self.iteration += 1 time_this_iter = time.time() - start self.time_total += time_this_iter