X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/blobdiff_plain/1527570fcc85d1879659efdd02e0227618f4d71b..66fb79ea0a686ebe057f6a6cb085de44870648ba:/src/circuitpython_typing.py diff --git a/src/circuitpython_typing.py b/src/circuitpython_typing.py index 3df3587..3ab01c3 100644 --- a/src/circuitpython_typing.py +++ b/src/circuitpython_typing.py @@ -34,17 +34,19 @@ from numpy import ndarray ReadableBuffer = Union[bytes, bytearray, memoryview, array, ndarray] """Classes that implement the readable buffer protocol - - `bytes` - - `bytearray` - - `memoryview` - - `array.array` - - ``numpy.ndarray`` + + * `bytes` + * `bytearray` + * `memoryview` + * `array.array` + * ``numpy.ndarray`` """ WriteableBuffer = Union[bytearray, memoryview, array, ndarray] """Classes that implement the writeable buffer protocol - - `bytearray` - - `memoryview` - - `array.array` - - ``numpy.ndarray`` + + * `bytearray` + * `memoryview` + * `array.array` + * ``numpy.ndarray`` """