As of right now in Gooey, defaults for argument parameters of nested lists show with the nested list contents encapsulated in quotations instead of each individual string.
The arguments are parsed correctly in ade
, but the strings should be portrayed correctly.
Current:
ors = [["customerNumber", "agreementNumber"]]
param = "customerNumber agreementNumber"
Desired:
ors = [["customerNumber", "agreementNumber"]]
param = "customerNumber" "agreementNumber"