From 2c90ac328767b5c2ef82b03e3c093917d64b1dee Mon Sep 17 00:00:00 2001 From: "boguslawa.wronska" Date: Thu, 17 Oct 2024 15:43:32 +0200 Subject: [PATCH] fix for reading variables from xlsx file --- mango/processing/file_functions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mango/processing/file_functions.py b/mango/processing/file_functions.py index 33ef29d7..9cd4730d 100644 --- a/mango/processing/file_functions.py +++ b/mango/processing/file_functions.py @@ -389,6 +389,8 @@ def load_str_iterable(v): return ast.literal_eval(v) except SyntaxError: return v + except ValueError: + return v else: return v