From 2beedadb1263c9078c9b5c6d2f63b2eb9e71ca76 Mon Sep 17 00:00:00 2001 From: "Alinson S. Xavier" Date: Sat, 11 Apr 2026 10:15:56 -0500 Subject: [PATCH] Initialize initial_time in parseInstrument.py --- tools/parseInstrument.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/parseInstrument.py b/tools/parseInstrument.py index c4a00c14..548ea9b4 100755 --- a/tools/parseInstrument.py +++ b/tools/parseInstrument.py @@ -29,6 +29,7 @@ current_class, current_method = None, None failed_tests = [] am_args = "-e class " exit_code = 1 +initial_time = 0.0 for line in open(log_filename).readlines(): matches = re.findall('^([0-9.]*)', line)