From 874843e55e1849759598ed40a84395cde43f7861 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Masseix?= Date: Sat, 17 Jul 2021 01:28:14 +0200 Subject: [PATCH] Fix indent --- plugins/modules/elasticache_info.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/modules/elasticache_info.py b/plugins/modules/elasticache_info.py index 77fc49f7304..4fba878b745 100644 --- a/plugins/modules/elasticache_info.py +++ b/plugins/modules/elasticache_info.py @@ -416,12 +416,12 @@ def describe_cache_clusters_with_backoff(client, cluster_id=None): @AWSRetry.exponential_backoff() def describe_replication_group_with_backoff(client, replication_group_id): - try: - response = client.describe_replication_groups(ReplicationGroupId=replication_group_id) - except is_boto3_error_code('ReplicationGroupNotFoundFault'): - return None + try: + response = client.describe_replication_groups(ReplicationGroupId=replication_group_id) + except is_boto3_error_code('ReplicationGroupNotFoundFault'): + return None - return response['ReplicationGroups'][0] + return response['ReplicationGroups'][0] @AWSRetry.exponential_backoff() def get_elasticache_tags_with_backoff(client, cluster_id):