Skip to content

Commit

Permalink
backend, model: remove two other calls to trivial super().__init__() …
Browse files Browse the repository at this point in the history
…methods

See 1a77728.
  • Loading branch information
jkhsjdhjs committed Apr 30, 2024
1 parent 1a77728 commit b6f4b0f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions basyx/aas/model/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,6 @@ def __init__(self,
"""
TODO: Add instruction what to do after construction
"""
super().__init__()
self.depends_on: Set[Reference] = set() if depends_on is None else depends_on


Expand All @@ -894,7 +893,6 @@ def __init__(self,
"""
TODO: Add instruction what to do after construction
"""
super().__init__()
self.type: QualifierType = type_
self.value_type: Type[datatypes.AnyXSDType] = value_type
self._value: Optional[ValueDataType] = datatypes.trivial_cast(value, value_type) if value is not None else None
Expand Down

0 comments on commit b6f4b0f

Please sign in to comment.