1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-09 00:14:16 +00:00
This commit is contained in:
deadc0de6
2022-08-25 23:21:11 +02:00
parent 348823eec7
commit 5b9d248219
14 changed files with 312 additions and 323 deletions

View File

@@ -27,7 +27,7 @@ class LinkTypes(IntEnum):
except KeyError as exc:
if default:
return default
err = 'bad {} value: "{}"'.format(cls.__name__, key)
err = f'bad {cls.__name__} value: "{key}"'
raise ValueError(err) from exc
def __str__(self):