Add constructor to CellType (#9399)

This commit is contained in:
zhykzhykzhyk
2022-12-27 12:43:35 +08:00
committed by GitHub
parent 154452ffc2
commit d6237d09c7

View File

@@ -68,6 +68,9 @@ _V_co = TypeVar("_V_co", covariant=True)
@final
class _Cell:
if sys.version_info >= (3, 8):
def __init__(self, __contents: object = ...) -> None: ...
__hash__: ClassVar[None] # type: ignore[assignment]
cell_contents: Any