From 1729681106203f4b692d12283ec01ffadaca20c4 Mon Sep 17 00:00:00 2001 From: Jon Beilke Date: Fri, 21 Sep 2018 10:45:22 -0500 Subject: [PATCH] formatting fix for E231 missing whitespace after : --- moto/core/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/moto/core/utils.py b/moto/core/utils.py index 2cdcd07f..21ac8c2e 100644 --- a/moto/core/utils.py +++ b/moto/core/utils.py @@ -290,8 +290,8 @@ def amzn_request_id(f): def merge_taglists(taglist_a, taglist_b): ''' Merges two tag lists into a single tag list with Keys in the second list taking precedence''' - tags_a = {t['Key']:t for t in taglist_a} - tags_b = {t['Key']:t for t in taglist_b} + tags_a = {t['Key']: t for t in taglist_a} + tags_b = {t['Key']: t for t in taglist_b} merged_tags = tags_a.copy() merged_tags.update(tags_b) return merged_tags.values()