From dd24e4cd90a68a9ba6e906ec448758b8d58970df 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 --- 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)