Skip to content

Commit

Permalink
fixes #327
Browse files Browse the repository at this point in the history
  • Loading branch information
nithinmurali committed Jul 26, 2019
1 parent fc6c740 commit 550deb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pygsheets/worksheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -1254,7 +1254,7 @@ def set_dataframe(self, df, start, copy_index=False, copy_head=True, fit=False,

start = format_addr(start, 'tuple')
df = df.replace(pd.np.nan, nan)
values = df.astype(str).values.tolist()
values = df.astype('unicode').values.tolist()
(df_rows, df_cols) = df.shape
num_indexes = 1

Expand Down

0 comments on commit 550deb2

Please sign in to comment.