From c014adbbfe8b845c4281beb8795cbb3e96fdc95d Mon Sep 17 00:00:00 2001
From: Alexandru Fikl <alexfikl@gmail.com>
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 55deb90..d484277 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
-- 
GitLab