Skip to content

Commit a73c227

Browse files
Fix f-string
Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
1 parent f3d2df8 commit a73c227

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_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)