Skip to content

Commit

Permalink
Fix unterminated f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
thatguy11325 committed Nov 16, 2023
1 parent 22a52f7 commit 954d563
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion retro/testing/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,10 @@ def verify_scenario(game, inttype, scenario="scenario", raw=None, dataraw=None):
warnings.append((file, f"missing reward in rewards[{i:d}]"))
elif "variables" in r and "script" in r:
warnings.append(
(file, f"both variables and script present in rewards[{i:d}]"),
(
file,
f"both variables and script present in rewards[{i:d}]",
),
)
if "reward" in scen:
warnings.append((file, "reward and rewards both present"))
Expand Down

0 comments on commit 954d563

Please sign in to comment.