(self, shape: Shape = (), dflt: int = 0)
| 723 | type: str = "int16" # noqa: A003 |
| 724 | |
| 725 | def __init__(self, shape: Shape = (), dflt: int = 0) -> None: |
| 726 | Atom.__init__(self, "int16", shape, dflt) |
| 727 | |
| 728 | |
| 729 | class Int32Atom(IntAtom): # type: ignore[misc] |