fix: protobuf version, misc

This commit is contained in:
Bingsu
2023-05-01 11:16:39 +09:00
parent cd941a51ed
commit 9c24105ed1
5 changed files with 47 additions and 18 deletions

View File

@@ -87,7 +87,7 @@ class ADetailerArgs:
try:
args[i] = dtype(args[i])
except ValueError as e:
msg = f"Error converting {attr!r} to {dtype}: {e}"
msg = f"Error converting {args[i]!r}({attr}) to {dtype}: {e}"
raise ValueError(msg) from e
return args