diff --git a/basyx/aas/backend/couchdb.py b/basyx/aas/backend/couchdb.py index ec7caec1b..8e582ee96 100644 --- a/basyx/aas/backend/couchdb.py +++ b/basyx/aas/backend/couchdb.py @@ -244,7 +244,6 @@ def __init__(self, url: str, database: str): :param url: URL to the CouchDB :param database: Name of the Database inside the CouchDB """ - super().__init__() self.url: str = url self.database_name: str = database diff --git a/basyx/aas/backend/local_file.py b/basyx/aas/backend/local_file.py index c521fa32e..867c55b8b 100644 --- a/basyx/aas/backend/local_file.py +++ b/basyx/aas/backend/local_file.py @@ -77,7 +77,6 @@ def __init__(self, directory_path: str): :param directory_path: Path to the local file backend (the path where you want to store your AAS JSON files) """ - super().__init__() self.directory_path: str = directory_path.rstrip("/") # A dictionary of weak references to local replications of stored objects. Objects are kept in this cache as diff --git a/basyx/aas/model/base.py b/basyx/aas/model/base.py index dc3079625..e3b798583 100644 --- a/basyx/aas/model/base.py +++ b/basyx/aas/model/base.py @@ -2338,7 +2338,6 @@ def __init__(self, value: Optional[ValueTypeIEC61360] = None, level_types: Iterable[IEC61360LevelType] = ()): - super().__init__() self.preferred_name: PreferredNameTypeIEC61360 = preferred_name self.short_name: Optional[ShortNameTypeIEC61360] = short_name self.data_type: Optional[DataTypeIEC61360] = data_type diff --git a/basyx/aas/model/provider.py b/basyx/aas/model/provider.py index 311618fea..d5658abc5 100644 --- a/basyx/aas/model/provider.py +++ b/basyx/aas/model/provider.py @@ -86,7 +86,6 @@ class DictObjectStore(AbstractObjectStore[_IT], Generic[_IT]): :class:`~aas.model.base.Identifier` → :class:`~aas.model.base.Identifiable` """ def __init__(self, objects: Iterable[_IT] = ()) -> None: - super().__init__() self._backend: Dict[Identifier, _IT] = {} for x in objects: self.add(x)