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

fix type mismatch in serialize_container argument

parent 957be2f5
No related branches found
No related tags found
No related merge requests found
Pipeline #243664 passed
......@@ -122,7 +122,7 @@ class NotAnArrayContainerError(TypeError):
@singledispatch
def serialize_container(ary: ArrayContainer) -> Iterable[Tuple[Any, Any]]:
def serialize_container(ary: Any) -> Iterable[Tuple[Any, Any]]:
r"""Serialize the array container into an iterable over its components.
The order of the components and their identifiers are entirely under
......
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