From 0bc8393c17457c0438fa093119119f20ac8285e1 Mon Sep 17 00:00:00 2001 From: Siyuan Zhang Date: Wed, 27 Oct 2021 15:10:37 +0800 Subject: [PATCH] Remove unused parameters (#912) --- coordinator/gscoordinator/io_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coordinator/gscoordinator/io_utils.py b/coordinator/gscoordinator/io_utils.py index 3c19b67f8875..6bd283e43e9e 100644 --- a/coordinator/gscoordinator/io_utils.py +++ b/coordinator/gscoordinator/io_utils.py @@ -95,7 +95,7 @@ def _filter_progress(self, line): # print('show_progress: ', len(line), ", ", line) if "PROGRESS--GRAPH" not in line: return line - self._show_progress(line) + self._show_progress() return None