socialpoint-labs / sheetfu

Python library to interact with Google Sheets V4 API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Typographical error

neomafo88 opened this issue · comments

https://github.com/socialpoint-labs/sheetfu/blob/master/documentation/usage.rst#get_range_from_a1

get_max_column()
…
max_row = sheet.get_max_column()
…

should be

max_column = sheet.get_max_column()

Additionally,

max_row = sheet.get_max_row() max_row = sheet.get_max_rows()

max_row = sheet.get_max_column() max_column = sheet.get_max_columns()