(self, shape: Shape = (), dflt: int = 0)
| 713 | type: str = "int8" # noqa: A003 |
| 714 | |
| 715 | def __init__(self, shape: Shape = (), dflt: int = 0) -> None: |
| 716 | Atom.__init__(self, "int8", shape, dflt) |
| 717 | |
| 718 | |
| 719 | class Int16Atom(IntAtom): # type: ignore[misc] |