Skip to content

Commit 7dfb999

Browse files
committed
_typing: ulab.ndarray is moving
1 parent 755cadd commit 7dfb999

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

shared-bindings/_typing/__init__.pyi

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,30 +10,30 @@ import audiocore
1010
import audiomixer
1111
import audiomp3
1212
import rgbmatrix
13-
import ulab
13+
import ulab.numpy
1414

1515
ReadableBuffer = Union[
16-
bytes, bytearray, memoryview, array.array, ulab.ndarray, rgbmatrix.RGBMatrix
16+
bytes, bytearray, memoryview, array.array, ulab.numpy.ndarray, rgbmatrix.RGBMatrix
1717
]
1818
"""Classes that implement the readable buffer protocol
1919
2020
- `bytes`
2121
- `bytearray`
2222
- `memoryview`
2323
- `array.array`
24-
- `ulab.ndarray`
24+
- `ulab.numpy.ndarray`
2525
- `rgbmatrix.RGBMatrix`
2626
"""
2727

2828
WriteableBuffer = Union[
29-
bytearray, memoryview, array.array, ulab.ndarray, rgbmatrix.RGBMatrix
29+
bytearray, memoryview, array.array, ulab.numpy.ndarray, rgbmatrix.RGBMatrix
3030
]
3131
"""Classes that implement the writeable buffer protocol
3232
3333
- `bytearray`
3434
- `memoryview`
3535
- `array.array`
36-
- `ulab.ndarray`
36+
- `ulab.numpy.ndarray`
3737
- `rgbmatrix.RGBMatrix`
3838
"""
3939

0 commit comments

Comments
 (0)