pre-commit run -a

This commit is contained in:
Iván Todorovich
2026-05-20 09:53:30 -03:00
parent 16af2b988d
commit 3330aa4986
14 changed files with 26 additions and 29 deletions
@@ -18,4 +18,4 @@ def strtobool(value):
try:
return _MAP[str(value).lower()]
except KeyError as error:
raise ValueError('"{}" is not a valid bool value'.format(value)) from error
raise ValueError(f'"{value}" is not a valid bool value') from error