(self, shape: Shape = (), dflt: int = 0)
| 753 | type: str = "uint8" # noqa: A003 |
| 754 | |
| 755 | def __init__(self, shape: Shape = (), dflt: int = 0) -> None: |
| 756 | Atom.__init__(self, "uint8", shape, dflt) |
| 757 | |
| 758 | |
| 759 | class UInt16Atom(UIntAtom): # type: ignore[misc] |