]> Repositories - Adafruit_Blinka-hackapet.git/commitdiff
Fix bullet point list in circuitpython_typing
authorAlec Delaney <tekktrik@gmail.com>
Wed, 19 Jan 2022 22:32:57 +0000 (17:32 -0500)
committerAlec Delaney <tekktrik@gmail.com>
Wed, 19 Jan 2022 22:32:57 +0000 (17:32 -0500)
src/circuitpython_typing.py

index 3df3587f7e88fe286bfe75eca52ebbf42b3fe0c5..3ab01c3f5c4a1434bd715b3b6386d162e5eb1b30 100644 (file)
@@ -34,17 +34,19 @@ from numpy import ndarray
 
 ReadableBuffer = Union[bytes, bytearray, memoryview, array, ndarray]
 """Classes that implement the readable buffer protocol
 
 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
 """
 
 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``
 """
 """