]> Repositories - Adafruit_Blinka-hackapet.git/blobdiff - src/circuitpython_typing.py
Increase title line
[Adafruit_Blinka-hackapet.git] / src / circuitpython_typing.py
index 93c3a3d7e240809d82dd0f5b0eb67ced4abd1eb5..8b803dff773b1317e1f1a5bb654eb7ba72529e46 100644 (file)
@@ -21,7 +21,7 @@
 # THE SOFTWARE.
 """
 `circuitpython_typing` - Define subset of types for C-level protocols
-======================================================
+=====================================================================
 
 See `CircuitPython:board` in CircuitPython for more details.
 
@@ -32,9 +32,7 @@ from typing import Union
 from array import array
 from numpy import ndarray
 
-ReadableBuffer = Union[
-    bytes, bytearray, memoryview, array, ndarray
-]
+ReadableBuffer = Union[bytes, bytearray, memoryview, array, ndarray]
 """Classes that implement the readable buffer protocol
   - `bytes`
   - `bytearray`
@@ -43,9 +41,7 @@ ReadableBuffer = Union[
   - `numpy.ndarray`
 """
 
-WriteableBuffer = Union[
-    bytearray, memoryview, array, ndarray
-]
+WriteableBuffer = Union[bytearray, memoryview, array, ndarray]
 """Classes that implement the writeable buffer protocol
   - `bytearray`
   - `memoryview`