From 515c3450c2f8854e075b4ca3977de67dd99fd148 Mon Sep 17 00:00:00 2001 From: John Westcott IV Date: Thu, 9 Sep 2021 15:51:15 -0400 Subject: [PATCH] Fixing linting issue --- awx_collection/plugins/module_utils/controller_api.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/awx_collection/plugins/module_utils/controller_api.py b/awx_collection/plugins/module_utils/controller_api.py index d2105e17ac..22e646c93d 100644 --- a/awx_collection/plugins/module_utils/controller_api.py +++ b/awx_collection/plugins/module_utils/controller_api.py @@ -262,7 +262,11 @@ class ControllerAPIModule(ControllerModule): parsed_collection_version = Version(self._COLLECTION_VERSION).version if not controller_version: - self.warn("You are using the {0} version of this collection but connecting to a controller that did not return a version".format(self._COLLECTION_VERSION)) + self.warn( + "You are using the {0} version of this collection but connecting to a controller that did not return a version".format( + self._COLLECTION_VERSION + ) + ) else: parsed_controller_version = Version(controller_version).version if controller_type == 'AWX':