(self, shape: Shape = (), dflt: int = 0)
| 743 | type: str = "int64" # noqa: A003 |
| 744 | |
| 745 | def __init__(self, shape: Shape = (), dflt: int = 0) -> None: |
| 746 | Atom.__init__(self, "int64", shape, dflt) |
| 747 | |
| 748 | |
| 749 | class UInt8Atom(UIntAtom): # type: ignore[misc] |