(self, shape: Shape = (), dflt: int = 0)
| 773 | type: str = "uint32" # noqa: A003 |
| 774 | |
| 775 | def __init__(self, shape: Shape = (), dflt: int = 0) -> None: |
| 776 | Atom.__init__(self, "uint32", shape, dflt) |
| 777 | |
| 778 | |
| 779 | class UInt64Atom(UIntAtom): # type: ignore[misc] |