From 68536d187e82eec10be63bd1ab42837a49f4ddec Mon Sep 17 00:00:00 2001 From: jpizarro Date: Wed, 18 Dec 2024 14:29:14 +0100 Subject: [PATCH] Fix descriptions --- bam_masterdata/metadata/entities.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bam_masterdata/metadata/entities.py b/bam_masterdata/metadata/entities.py index bd26fbd..9c86a7e 100644 --- a/bam_masterdata/metadata/entities.py +++ b/bam_masterdata/metadata/entities.py @@ -55,7 +55,7 @@ def to_dict(self) -> dict: class ObjectType(BaseEntity): """ Base class used to define object types. All object types must inherit from this class. The - object types are defined in the module `bam_data_store/object_types.py`. + object types are defined in the module `bam_masterdata/object_types.py`. The `ObjectType` class contains a list of all `properties` defined for a `ObjectType`, for internally represent the model in other formats (e.g., JSON or Excel). @@ -101,7 +101,7 @@ def entity_type(self) -> str: class VocabularyType(BaseEntity): """ Base class used to define vocabulary types. All vocabulary types must inherit from this class. The - vocabulary types are defined in the module `bam_data_store/vocabulary_types.py`. + vocabulary types are defined in the module `bam_masterdata/vocabulary_types.py`. The `VocabularyType` class contains a list of all `terms` defined for a `VocabularyType`, for internally represent the model in other formats (e.g., JSON or Excel).