From: Alec Delaney Date: Wed, 19 Jan 2022 22:32:57 +0000 (-0500) Subject: Fix bullet point list in circuitpython_typing X-Git-Tag: 6.20.1^2 X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/commitdiff_plain/bc4409783b211ddb6bf0621dd7158a95253dd302?hp=--cc Fix bullet point list in circuitpython_typing --- bc4409783b211ddb6bf0621dd7158a95253dd302 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`` """