Skip to content

Commit

Permalink
openpyxl: fix Worksheet.values annotation (#12674)
Browse files Browse the repository at this point in the history
  • Loading branch information
sashkent3 committed Sep 17, 2024
1 parent d3070c5 commit 0015ce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stubs/openpyxl/openpyxl/worksheet/worksheet.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ class Worksheet(_WorkbookChild):
@property
def rows(self) -> Generator[tuple[Cell, ...], None, None]: ...
@property
def values(self) -> Generator[tuple[_CellValue, ...], None, None]: ...
def values(self) -> Generator[tuple[_CellValue | None, ...]]: ...
@overload
def iter_cols(
self, min_col: int | None, max_col: int | None, min_row: int | None, max_row: int | None, values_only: Literal[True]
Expand Down

0 comments on commit 0015ce8

Please sign in to comment.