Skip to content

Commit

Permalink
Refactored scenario generator tool: use f-strings there
Browse files Browse the repository at this point in the history
  • Loading branch information
tisnik committed Nov 8, 2023
1 parent 91941b1 commit e8d2963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/gen_scenario_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@
for prefix in PREFIXES:
if line.startswith(prefix):
line = line[len(prefix):]
print("* {}".format(line))
print(f"* {line}")
# vertical space between subsections in generated file
print()

0 comments on commit e8d2963

Please sign in to comment.