From 9b9c75fbefee56f04539cd253b811ca3cb5e04c1 Mon Sep 17 00:00:00 2001 From: Kamalesh Babulal Date: Thu, 30 May 2024 21:16:06 +0530 Subject: [PATCH] ftests/cgroup: Fix flake8 warning Fix pythonlint (flake8) warning: tests/ftests/cgroup.py:630:22: E275 missing whitespace after keyword Signed-off-by: Kamalesh Babulal Signed-off-by: Tom Hromatka --- tests/ftests/cgroup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ftests/cgroup.py b/tests/ftests/cgroup.py index cbee1f96..7a73fa6e 100644 --- a/tests/ftests/cgroup.py +++ b/tests/ftests/cgroup.py @@ -627,7 +627,7 @@ class Cgroup(object): elif re.ret == 0 and 'ERROR: can\'t get' in re.stderr: res = re.stdout else: - raise(re) + raise (re) # convert the cgsnapshot stdout to a dict of cgroup objects return Cgroup.snapshot_to_dict(res) -- 2.47.3