We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b502ec1 commit 4b3a8fdCopy full SHA for 4b3a8fd
src/labthings_fastapi/types/numpy.py
@@ -60,7 +60,7 @@ def np_to_listoflists(arr: np.ndarray) -> NestedListOfNumbers:
60
NB this will not be quick! Large arrays will be much better
61
serialised by dumping to base64 encoding or similar.
62
"""
63
- return arr.tolist()
+ return arr.tolist() # type: ignore[return-value]
64
65
66
def listoflists_to_np(lol: Union[NestedListOfNumbers, np.ndarray]) -> np.ndarray:
0 commit comments