From 729e03584539dd8d3dd80766e34113cc9b38bd5b Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Fri, 14 Nov 2025 08:08:34 -0500 Subject: [PATCH] Fix `with open(...) as f:` Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- regression-tests/bulktest-to-json.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regression-tests/bulktest-to-json.py b/regression-tests/bulktest-to-json.py index 2c83ca6e6b..c9e28db59b 100755 --- a/regression-tests/bulktest-to-json.py +++ b/regression-tests/bulktest-to-json.py @@ -13,7 +13,7 @@ for fname in glob.glob('testresults-*.xml'): vars['tag'] = tag varnames.update(vars.keys()) stats=dict() - with open(fname) as f + with open(fname) as f: for line in f: if line.startswith('<'): sname = line.split(';')[4][:-3] -- 2.47.3