Skip to content

Commit

Permalink
fix for reading variables from xlsx file
Browse files Browse the repository at this point in the history
  • Loading branch information
boguslawa.wronska committed Oct 17, 2024
1 parent 2466666 commit 2c90ac3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mango/processing/file_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 2c90ac3

Please sign in to comment.