mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
openpyxl: fix Worksheet.values annotation (#12674)
This commit is contained in:
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user