Skip to content

Commit

Permalink
new boolean support
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Nov 29, 2018
1 parent b2d9099 commit c1eb36c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/google/spreadsheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def get_spreadsheet(self, id, ranges = None, include_grid_data = None):
contents = self.get(
url,
ranges = ranges,
includeGridData = include_grid_data
includeGridData = "true" if include_grid_data else "false"
)
return contents

Expand Down

0 comments on commit c1eb36c

Please sign in to comment.