Closed michaelleerilee closed 2 years ago
In starepandas/starepandas/io/pod.py we have:
for pod in pods: df = df.append(pandas.read_pickle(pod)) if add_podname: df['pod'] = pod
Which is a "last one wins" error. The podname needs to be added before the new dataframe is appended.
In starepandas/starepandas/io/pod.py we have:
Which is a "last one wins" error. The podname needs to be added before the new dataframe is appended.