Skip to content

Commit 1070815

Browse files
committed
make ruff happy
1 parent 29b2f21 commit 1070815

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeflash/verification/parse_test_output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def parse_test_xml(
265265
timed_out = True
266266

267267
sys_stdout = testcase.system_out or ""
268-
begin_matches = [match for match in matches_re_start.finditer(sys_stdout)]
268+
begin_matches = list(matches_re_start.finditer(sys_stdout))
269269
end_matches = {}
270270
for match in matches_re_end.finditer(sys_stdout):
271271
groups = match.groups()

0 commit comments

Comments
 (0)