From 0d82e4d854df1dc8db126634d2a2eeae50a7fd20 Mon Sep 17 00:00:00 2001 From: Alexandru Fikl Date: Thu, 16 Dec 2021 12:43:40 -0600 Subject: [PATCH] fix type mismatch in serialize_container argument --- arraycontext/container/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arraycontext/container/__init__.py b/arraycontext/container/__init__.py index 55deb90c..d484277d 100644 --- a/arraycontext/container/__init__.py +++ b/arraycontext/container/__init__.py @@ -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