Merge branch 'frost' into pr-eager-content

This commit is contained in:
Ben Rog-Wilhelm 2022-12-17 15:15:41 -08:00 committed by Ben Rog-Wilhelm
commit b4efd75753
59 changed files with 2193 additions and 581 deletions

View file

@ -14,4 +14,4 @@ def bool_from_string(input: typing.Union[str, bool]) -> bool:
return True
if input.lower() in ("no", "false", "f", "off", "0"):
return False
raise ValueError()
raise ValueError(f"'{input}' is neither a bool nor a recognized string")