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
Describe the bug
When try get cell.color, you get color whole of cells of sheet and this make truble.
problem with func: worcksheet.py/Worcksheet/_get_range()
def _get_range(self, start_label, end_label=None, rformat='A1'):
#Add like these
#____________________________________________
if end_label is None:
end_label = start_label
#____________________________________________
grange = GridRange(worksheet=self, start=start_label, end=end_label)
if rformat == "A1":
return grange.label
else:
return grange.to_json()
System Information
OS: linux Manjaro
pygsheets version :2.0.6
pygsheets installed from (github or pypi):pypi
The text was updated successfully, but these errors were encountered:
Describe the bug
When try get cell.color, you get color whole of cells of sheet and this make truble.
problem with func: worcksheet.py/Worcksheet/_get_range()
System Information
The text was updated successfully, but these errors were encountered: