Skip to content

Commit

Permalink
Update python/idsse_common/idsse/common/path_builder.py
Browse files Browse the repository at this point in the history
Co-authored-by: Geary Layne <[email protected]>
  • Loading branch information
paulhamer-noaa and Geary-Layne authored Nov 14, 2024
1 parent 614f5e8 commit 925b875
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/idsse_common/idsse/common/path_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 925b875

Please sign in to comment.