sheetfu icon indicating copy to clipboard operation
sheetfu copied to clipboard

Typographical error

Open neomafo88 opened this issue 1 year ago • 1 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()

neomafo88 avatar May 01 '23 21:05 neomafo88

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()

neomafo88 avatar May 01 '23 21:05 neomafo88