read only worksheet raises DeprecationWarning
Created originally on Bitbucket by scott_stanton_veeva (Scott Stanton)
A simple access to a cell via a read-only workbook results in a deprecation warning because get_squared_range is still used by ReadOnlyWorksheet._get_cell():
#!python
>>> wb=load_workbook('myfile.xlsx', true)
>>> ws=wb['Employee List']
>>> ws['A1']
openpyxl/worksheet/read_only.py:189: DeprecationWarning: Call to deprecated function get_squared_range (Use ws.iter_rows()).
for row in self.get_squared_range(column, row, column, row):
<ReadOnlyCell 'Employee List'.A1>
>>>