Skip to content

Commit 8a22e5e

Browse files
committed
fix issue pandas-dev#113 and issue pandas-dev#121
1 parent f0fbf7d commit 8a22e5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arctic/store/_pandas_ndarray_store.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ class PandasDataFrameStore(PandasStore):
282282

283283
def _column_data(self, df):
284284
columns = list(map(str, df.columns))
285-
if columns != df.columns:
285+
if columns != list(df.columns):
286286
log.info("Dataframe column names converted to strings")
287287
column_vals = [df[c].values for c in df.columns]
288288
return columns, column_vals

0 commit comments

Comments
 (0)