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
I tried to change a column format except the first cell, but the format was applied to the whole column. I took a look at the code and the bug probably caused by the GridRange.
To Reproduce
Steps to reproduce the behavior:
from pygsheets.address import GridRange
//...
grange1 = GridRange.create('G:G', wks)
grange2 = GridRange.create('G2:G', wks)
print(grange1.to_json())
print(grange2.to_json())
# see error
# Output:
# {'sheetId': '...', 'startColumnIndex': 6, 'endColumnIndex': 7}
# {'sheetId': '...', 'startColumnIndex': 6, 'endColumnIndex': 7} # <- it should be different
System Information
OS: Ubuntu 22.04.3 LTS
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
I tried to change a column format except the first cell, but the format was applied to the whole column. I took a look at the code and the bug probably caused by the GridRange.
To Reproduce
Steps to reproduce the behavior:
System Information
The text was updated successfully, but these errors were encountered: