Skip to content

Commit

Permalink
version bumb 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nithinmurali committed Nov 25, 2018
1 parent 9f842fc commit 4246209
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pygsheets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"""

__version__ = '1.1.4'
__version__ = '2.0.0'
__author__ = 'Nithin Murali'

from pygsheets.authorization import authorize
Expand Down
4 changes: 2 additions & 2 deletions pygsheets/spreadsheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,11 +333,11 @@ def custom_request(self, request, fields):
These requests have to be properly constructed. All possible requests are documented in the reference.
Reference: https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/request
Reference: api docs <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/request>`__
:param request: One or several requests as dictionaries.
:param fields: Fields which should be included in the response.
:return: json response -> https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/response
:return: json response <https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets/response> __
"""
return self.client.sh_batch_update(self.id, request, fields=fields, batch=False)

Expand Down

0 comments on commit 4246209

Please sign in to comment.