You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Worksheet:rows is typed as Generator[Cell, None, None]. All it does is call self.iter_rows() (no args) and thus should be typed Generator[tuple[Cell, ...], None, None]
The text was updated successfully, but these errors were encountered:
srittau
added a commit
to srittau/typeshed
that referenced
this issue
Mar 20, 2023
Worksheet:rows is typed as
Generator[Cell, None, None]
. All it does is callself.iter_rows()
(no args) and thus should be typedGenerator[tuple[Cell, ...], None, None]
The text was updated successfully, but these errors were encountered: