From 3fe61cfa4fa7ed38cb4bd3275d81ee110c2b4241 Mon Sep 17 00:00:00 2001 From: John Westcott IV Date: Thu, 6 Aug 2020 14:48:01 -0400 Subject: [PATCH] Fixing linting issues --- awx_collection/plugins/modules/tower_export.py | 4 ++-- awx_collection/plugins/modules/tower_import.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/awx_collection/plugins/modules/tower_export.py b/awx_collection/plugins/modules/tower_export.py index 6dabf17f39..ad8da8f3ce 100644 --- a/awx_collection/plugins/modules/tower_export.py +++ b/awx_collection/plugins/modules/tower_export.py @@ -97,9 +97,9 @@ from ..module_utils.tower_awxkit import TowerAWXKitModule try: from awxkit.api.pages.api import EXPORTABLE_RESOURCES - HAS_EXPORTABLE_RESOURCES=True + HAS_EXPORTABLE_RESOURCES = True except ImportError: - HAS_EXPORTABLE_RESOURCES=False + HAS_EXPORTABLE_RESOURCES = False def main(): diff --git a/awx_collection/plugins/modules/tower_import.py b/awx_collection/plugins/modules/tower_import.py index 0dddeb64a0..37de035123 100644 --- a/awx_collection/plugins/modules/tower_import.py +++ b/awx_collection/plugins/modules/tower_import.py @@ -58,9 +58,9 @@ import logging # In this module we don't use EXPORTABLE_RESOURCES, we just want to validate that our installed awxkit has import/export try: from awxkit.api.pages.api import EXPORTABLE_RESOURCES - HAS_EXPORTABLE_RESOURCES=True + HAS_EXPORTABLE_RESOURCES = True except ImportError: - HAS_EXPORTABLE_RESOURCES=False + HAS_EXPORTABLE_RESOURCES = False def main(): argument_spec = dict(