(self, shape: Shape = (), dflt: int = 0)
| 763 | type: str = "uint16" # noqa: A003 |
| 764 | |
| 765 | def __init__(self, shape: Shape = (), dflt: int = 0) -> None: |
| 766 | Atom.__init__(self, "uint16", shape, dflt) |
| 767 | |
| 768 | |
| 769 | class UInt32Atom(UIntAtom): # type: ignore[misc] |