James Beith
Results
2
issues of
James Beith
# Bug report ## What's wrong Having recently updated mypy and django-stubs, the following error started occurring: ```shell error: Missing type parameters for generic type "BaseFormSet" [type-arg] ``` This was...
bug
Currently the type hints for `worksheet.rows` returns `Cell` objects. However, opening a workbook in readonly mode results in `ReadOnlyCell` or `EmptyCell` objects being returned. ```py >>> workbook = openpyxl_excel_reader.load_workbook(file, read_only=True)...