Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pyopenxl: CellRange: title should not be required #10682

Closed
oefe opened this issue Sep 8, 2023 · 1 comment · Fixed by #10688
Closed

pyopenxl: CellRange: title should not be required #10682

oefe opened this issue Sep 8, 2023 · 1 comment · Fixed by #10688
Labels
stubs: false positive Type checkers report false errors

Comments

@oefe
Copy link
Contributor

oefe commented Sep 8, 2023

#10563 introduced type annotations for title in CellRange (thanks!).

Unfortunately, it made it required in one of the overloads.

I don't think title should be required.

Discussion

A comment in the stub provides a justification for making it required:

    # Could be None if the caller forgot to set title and range_string doesn't contain "!"
    # but that's not intended and will lead to errors (ie: can't be None in __str__)
    title: str

However, __str__ works fine if title is none:

>>> from openpyxl.worksheet.cell_range import CellRange
>>> r = CellRange(min_col=1, min_row=1, max_col=10, max_row=100)
>>> r
<CellRange A1:J100>
>>> str(r)
'A1:J100'

I haven't found any other place in the CellRange source where title = None would be causing problems.
It is apparently treated as equivalent to an empty string.

Example

from openpyxl.worksheet.cell_range import CellRange

cell_range = CellRange(
    min_col=1,
    min_row=1,
    max_col=10,
    max_row=100,
)

This passed all checks with Pyright 1.1.324. But Pyright 1.1.326 (which includes the latest rev of typeshed) reports:

/issues/bug_cellrange_title.py
  /issues/bug_cellrange_title.py:3:14 - error: No overloads for "__init__" match the provided arguments
    Argument types: (Literal[1], Literal[1], Literal[10], Literal[100]) (reportGeneralTypeIssues)

Workaround

Set title to an empty string.

@srittau
Copy link
Collaborator

srittau commented Sep 8, 2023

Indeed, I missing this during the review, sorry. PR to fix welcome!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
stubs: false positive Type checkers report false errors
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants