Allow also str as a field type specifier

This commit is contained in:
D. Berge
2024-08-22 18:43:57 +02:00
parent e398f2d3cd
commit d5a10ca273

View File

@@ -18,6 +18,7 @@ transform = {
"int": lambda v: builtins.int(float(v)),
"float": float,
"string": str,
"str": str,
"bool": to_bool
}