Skip to content

Commit c014adb

Browse files
alexfiklinducer
authored andcommitted
fix type mismatch in serialize_container argument
1 parent 957be2f commit c014adb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arraycontext/container/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ class NotAnArrayContainerError(TypeError):
122122

123123

124124
@singledispatch
125-
def serialize_container(ary: ArrayContainer) -> Iterable[Tuple[Any, Any]]:
125+
def serialize_container(ary: Any) -> Iterable[Tuple[Any, Any]]:
126126
r"""Serialize the array container into an iterable over its components.
127127
128128
The order of the components and their identifiers are entirely under

0 commit comments

Comments
 (0)