SwissDataScienceCenter / calamus

A JSON-LD Serialization Libary for Python
Apache License 2.0
29 stars 12 forks source link

fix: always use keyword arguments when instantiating #53

Closed m-alisafaee closed 3 years ago

m-alisafaee commented 3 years ago

We use positional argument when instantiating a class. This causes issues when some arguments have default values and are missing from data. This PR fixes this issue by always using keyword arguments.