Skip to content

Commit

Permalink
inheritance problem solved
Browse files Browse the repository at this point in the history
  • Loading branch information
pedropaulofb committed Dec 10, 2023
1 parent bd52c2f commit 1178f92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ontouml_py/model/modelelement.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from ontouml_py.model.projectelement import ProjectElement


class ModelElement(NamedElement, ProjectElement):
class ModelElement(ProjectElement, NamedElement):
"""Represents a model element, inheriting properties from both NamedElement and ProjectElement.
:ivar custom_properties: A set of custom properties associated with the model element. Each property is a tuple
Expand Down

0 comments on commit 1178f92

Please sign in to comment.