From 3cd2dce496fff1c45e888cd6b971fc1cbc15f755 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 23 Oct 2023 08:01:50 -0700 Subject: [PATCH] formatting --- jc/parsers/xml.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/jc/parsers/xml.py b/jc/parsers/xml.py index 5adb088c..903d9680 100644 --- a/jc/parsers/xml.py +++ b/jc/parsers/xml.py @@ -146,13 +146,13 @@ def parse(data, raw=False, quiet=False): # modified output with _ prefix for attributes try: raw_output = xmltodict.parse(data, - dict_constructor=dict, - process_comments=True, - attr_prefix='_') + dict_constructor=dict, + process_comments=True, + attr_prefix='_') except (ValueError, TypeError): raw_output = xmltodict.parse(data, - dict_constructor=dict, - attr_prefix='_') + dict_constructor=dict, + attr_prefix='_') return raw_output