Skip to content

Commit

Permalink
Add setter func for base.HasKind.kind
Browse files Browse the repository at this point in the history
  • Loading branch information
zrgt authored and s-heppner committed Nov 12, 2024
1 parent 30a1499 commit 0543f27
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sdk/basyx/aas/model/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -1548,6 +1548,10 @@ def __init__(self) -> None:
def kind(self):
return self._kind

@kind.setter
def kind(self, value: ModellingKind):
self._kind = value


class Qualifiable(Namespace, metaclass=abc.ABCMeta):
"""
Expand Down

0 comments on commit 0543f27

Please sign in to comment.