Skip to content
Snippets Groups Projects
Commit 83a3da06 authored by Alexandru Fikl's avatar Alexandru Fikl Committed by Andreas Klöckner
Browse files

fix typo in ndarray serialization

parent c88858ec
No related branches found
No related tags found
No related merge requests found
Pipeline #256772 passed
......@@ -216,7 +216,7 @@ def get_container_context(ary: ArrayContainer) -> Optional[ArrayContext]:
def _serialize_ndarray_container(ary: np.ndarray) -> Iterable[Tuple[Any, Any]]:
if ary.dtype.char != "O":
raise NotAnArrayContainerError(
f"cannot seriealize '{type(ary).__name__}' with dtype '{ary.dtype}'")
f"cannot serialize '{type(ary).__name__}' with dtype '{ary.dtype}'")
# special-cased for speed
if ary.ndim == 1:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment