From 445b6704e865e3b1a55c61aeeb6828ed24ac7334 Mon Sep 17 00:00:00 2001 From: amitjans <amitjans@ethz.ch> Date: Tue, 31 Aug 2021 11:09:10 +0200 Subject: [PATCH] Fix small error --- tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools.py b/tools.py index ab4454a..9de66fa 100644 --- a/tools.py +++ b/tools.py @@ -283,7 +283,7 @@ class Memory: try: max_value = self.memory[self.max_idx] except IndexError: - max_value = [[-1, -1, -1]] + max_value = np.array([[-1, -1, -1]]) return max_value -- GitLab