From d5a10ca27300b3efe354d55c30e83fa154278e01 Mon Sep 17 00:00:00 2001 From: "D. Berge" Date: Thu, 22 Aug 2024 18:43:57 +0200 Subject: [PATCH] Allow also `str` as a field type specifier --- bin/fwr.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/fwr.py b/bin/fwr.py index 4ae5bf3..f6324c9 100644 --- a/bin/fwr.py +++ b/bin/fwr.py @@ -18,6 +18,7 @@ transform = { "int": lambda v: builtins.int(float(v)), "float": float, "string": str, + "str": str, "bool": to_bool }