aas-core-works / aas-core3.0-python

Manipulate, verify and de/serialize asset administration shells in Python.
Other
4 stars 0 forks source link

Fix jsonization confusing ``dict`` for array #33

Closed mristin closed 1 week ago

mristin commented 1 week ago

We fix the JSON de-serialization so that it explicitly check that a property is an array-like value instead of simply checking for inheritance from collections.abc.Iterable, as mappings are also iterables in Python.

This corresponds to aas-core-codegen bcab1a9c.

Fixes #31.