From e1808a6ed7f5b52f8854d09c0f642ef81dc3efda Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Thu, 21 Apr 2016 14:13:03 -0400 Subject: [PATCH] Update indentation for flake8 --- awx/main/tasks.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/awx/main/tasks.py b/awx/main/tasks.py index 8c3d8a7826..4d08944786 100644 --- a/awx/main/tasks.py +++ b/awx/main/tasks.py @@ -1374,10 +1374,10 @@ class RunInventoryUpdate(BaseTask): elif inventory_update.source == 'azure_rm': if len(passwords.get('source_client', '')) and \ len(passwords.get('source_tenant', '')): - env['AZURE_CLIENT_ID'] = passwords.get('source_client', '') - env['AZURE_SECRET'] = passwords.get('source_secret', '') - env['AZURE_TENANT'] = passwords.get('source_tenant', '') - env['AZURE_SUBSCRIPTION_ID'] = passwords.get('source_subscription', '') + env['AZURE_CLIENT_ID'] = passwords.get('source_client', '') + env['AZURE_SECRET'] = passwords.get('source_secret', '') + env['AZURE_TENANT'] = passwords.get('source_tenant', '') + env['AZURE_SUBSCRIPTION_ID'] = passwords.get('source_subscription', '') else: env['AZURE_SUBSCRIPTION_ID'] = passwords.get('source_subscription', '') env['AZURE_AD_USER'] = passwords.get('source_username', '')