From 925b8755cfc950368398844f505da4349ab01ebf Mon Sep 17 00:00:00 2001 From: Paul Hamer <81647525+paulhamer-noaa@users.noreply.github.com> Date: Thu, 14 Nov 2024 13:31:39 -0700 Subject: [PATCH] Update python/idsse_common/idsse/common/path_builder.py Co-authored-by: Geary Layne <77741618+Geary-Layne@users.noreply.github.com> --- python/idsse_common/idsse/common/path_builder.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/idsse_common/idsse/common/path_builder.py b/python/idsse_common/idsse/common/path_builder.py index 6dd9c5f..19cb22c 100644 --- a/python/idsse_common/idsse/common/path_builder.py +++ b/python/idsse_common/idsse/common/path_builder.py @@ -361,9 +361,9 @@ def parse_args(key: str, value: str, result: dict): for i, _dir in enumerate(dirs): res = re.search(r'{.*}', _dir) if res: - # pylint: disable=broad-exception-caught try : parse_args(res.group(), vals[i][res.span()[0]:], time_args) - except Exception: + except Exception: # pylint: disable=broad-exception-caught + pass return time_args