From c3b4e38101b1bf806a218a584cf38fdc2d4feef8 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Mon, 1 Aug 2022 23:39:35 +0200 Subject: [PATCH] flake8: fix 'error E275 missing whitespace after keyword' Signed-off-by: Guillaume Abrioux (cherry picked from commit 7ce972e7155fd0e0aaf7352656c0805d9a2afad5) (cherry picked from commit 82dc265e2f8b8714794be0e517aaa746d670dd6a) --- module_utils/ca_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module_utils/ca_common.py b/module_utils/ca_common.py index a0ab9cc86..7bd70ce16 100644 --- a/module_utils/ca_common.py +++ b/module_utils/ca_common.py @@ -110,4 +110,4 @@ def fatal(message, module): if module: module.fail_json(msg=message, rc=1) else: - raise(Exception(message)) + raise Exception(message)