Skip to content

Commit e06aa07

Browse files
Fix f-string
Co-authored-by: Kumar Aditya <[email protected]>
1 parent f422ea9 commit e06aa07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/cases_generator/test_generator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def run_cases_test(input: str, expected: str):
1717
a.parse()
1818
a.analyze()
1919
if a.errors:
20-
raise RuntimeError("Found {a.errors} errors")
20+
raise RuntimeError(f"Found {a.errors} errors")
2121
a.write_instructions()
2222
temp_output.seek(0)
2323
lines = temp_output.readlines()

0 commit comments

Comments
 (0)