Fixing linting issue

This commit is contained in:
John Westcott IV 2021-09-09 15:51:15 -04:00 committed by beeankha
parent 5607c350cd
commit 515c3450c2

View File

@ -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':