You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would be convenient if this function could handle None in addition to empty strings, in case column types have not been inferred correctly.
Currently:
"petab/core.py", line 544, in split_parameter_replacement_list
result = [x.strip() for x in list_string.split(delim) if len(x.strip())]
AttributeError: 'NoneType' object has no attribute 'split'
The text was updated successfully, but these errors were encountered:
Would be convenient if this function could handle None in addition to empty strings, in case column types have not been inferred correctly.
Currently:
The text was updated successfully, but these errors were encountered: