Closed jl-wynen closed 5 months ago
The code uses isinstance(param, key) which doesn't work when key is a TypeAliasType. Might be fixed by #144
isinstance(param, key)
key
TypeAliasType
Note also #81.
The isinstance checks have been removed in the latest release so this should be done and we can implement #81.
isinstance
The code uses
isinstance(param, key)
which doesn't work whenkey
is aTypeAliasType
. Might be fixed by #144