inducer / arraycontext

Choose your favorite numpy-workalike!
6 stars 11 forks source link

Fix type mismatch in serialize_container argument #131

Closed alexfikl closed 2 years ago

alexfikl commented 2 years ago

Seems like the new version of mypy is looking into the singledispatch arguments a bit more closely. The issue was that

This just sets it to Any so that it's a proper fallback for all objects.

Fixes #130

inducer commented 2 years ago

Thanks!