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
If df[col] is not a series (because df has more than one column named col), then pd.isnull(df[col][idx]) throws a KeyError. This occurs on line 144 of df2gspread.py.
for j, idx in enumerate(df.index):
for i, col in enumerate(df.columns.values):
if not pd.isnull(df[col][idx]):
cell_list[i + j * len(df.columns.values)].value = df[col][idx]`
The text was updated successfully, but these errors were encountered:
If
df[col]
is not a series (becausedf
has more than one column namedcol
), thenpd.isnull(df[col][idx])
throws aKeyError
. This occurs on line 144 of df2gspread.py.The text was updated successfully, but these errors were encountered: