This commit is contained in:
Ines Montani 2020-06-03 14:42:39 +02:00
parent 4e0610d0d4
commit a8875d4a4b

View File

@ -42,7 +42,7 @@ def _normalize_props(props):
elif isinstance(key, (int, str)) and isinstance(value, (int, str)):
out[key] = value
else:
warnings.warn(Warnings.100.format(feature={key: value}))
warnings.warn(Warnings.W100.format(feature={key: value}))
return out