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
in these function, it should be GET method, not POST
` def get_row(self, index):
"""
Gets a row contained in the range.
:param int index: Row number of the range to be retrieved.
:return: Range
"""
return self._get_range('get_row', method='POST', row=index)
def get_rows_above(self, rows=1):
"""
Gets a certain number of rows above a given range.
:param int rows: Optional. The number of rows to include in the resulting range.
:return: Range
"""
return self._get_range('rows_above', rows, method='POST')
def get_rows_below(self, rows=1):
"""
Gets a certain number of rows below a given range.
:param int rows: Optional. The number of rows to include in the resulting range.
:return: Range
"""
return self._get_range('rows_below', rows, method='POST')`
The text was updated successfully, but these errors were encountered:
excel.py
in these function, it should be GET method, not POST
` def get_row(self, index):
"""
Gets a row contained in the range.
:param int index: Row number of the range to be retrieved.
:return: Range
"""
return self._get_range('get_row', method='POST', row=index)
The text was updated successfully, but these errors were encountered: