Skip to content
Snippets Groups Projects
Commit 6faf9ad9 authored by David Schäfer's avatar David Schäfer
Browse files

new config file separator to not break multiple function arguments

parent 8cce8869
No related branches found
No related tags found
No related merge requests found
......@@ -90,4 +90,4 @@ def prepareConfig(config_df, data):
def readConfig(fname):
return pd.read_csv(fname, delimiter=",", skipinitialspace=True)
return pd.read_csv(fname, delimiter=";", skipinitialspace=True)
......@@ -59,6 +59,6 @@ def initMetaDict(config_dict, data):
df = pd.DataFrame(config_dict)[_getKeys(config_dict)]
meta = prepareConfig(df, data)
fobj = io.StringIO()
meta.to_csv(fobj, index=False)
meta.to_csv(fobj, index=False, sep=";")
fobj.seek(0)
return fobj, meta
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment