From b0d5c4011b13bb5a83cf7ff5623aae40b73771b8 Mon Sep 17 00:00:00 2001 From: Rajesh Acharya Date: Fri, 9 Jun 2023 09:33:02 -0400 Subject: [PATCH] Update parser.py Added del of '_exploded' in the explode method of Parser() class. --- aws_parsecf/parser.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aws_parsecf/parser.py b/aws_parsecf/parser.py index f7f90de..88b15e7 100644 --- a/aws_parsecf/parser.py +++ b/aws_parsecf/parser.py @@ -39,6 +39,7 @@ def explode(self, current): if e.args != (key,): raise # not a condition + del current['_exploded'] # array elif isinstance(current, list): for index, value in enumerate(current):