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
The type hint of _Row.cells() is wrong. Tuple[_Cell] means there is only one _Cell object in tuple, so when I try to get the 2nd, 3rd _Cell object, Pylance tells me there is a IndexError.
Change the type hint to Tuple[_Cell, ...] should fix this.