This commit is contained in:
Mason Remy 2021-03-16 15:05:57 -07:00 коммит произвёл byronchanguion
Родитель 7630c8fa60
Коммит e38a371e0f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -23,7 +23,7 @@ def _read_toml_file(filepath):
def _check_required_table_entry(table, key):
if key not in table:
# TODO : add more context to this error message
raise ValueError("Invalid HAT file: missing required key {}".format(key))
raise ValueError(f"Invalid HAT file: missing required key {key}")
def _check_required_table_entries(table, keys):
for key in keys: