Skip to content

Commit

Permalink
Fix: Python fstring for py 3.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
Labbeti committed Aug 8, 2023
1 parent f2140d6 commit b630476
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aac_datasets/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def _str_to_bool(s: str) -> bool:
return False
else:
raise ValueError(
f"Invalid argument {s=}. (expected one of {_TRUE_VALUES + _FALSE_VALUES})"
f"Invalid argument s={s}. (expected one of {_TRUE_VALUES + _FALSE_VALUES})"
)


Expand Down

0 comments on commit b630476

Please sign in to comment.