Skip to content

Commit e6ba8de

Browse files
Fixed PR comments
1 parent b5b67de commit e6ba8de

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

core/esmf-aspect-meta-model-python/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ poetry run download-samm-branch
7171
```
7272
Link to all branches: [SAMM Releases](https://github.com/eclipse-esmf/esmf-semantic-aspect-meta-model/branches)
7373

74-
## SAMMGraph usage
74+
## SAMM Aspect Model Graph usage
7575

76-
SAMMGraph is a class that allows you to load and interact with the Semantic Data Aspect Meta Model graph.
77-
Below is an example of how to use SAMMGraph in your Python code:
76+
SAMM Aspect Model Graph is a class that allows you to load and interact with the Semantic Data Aspect Meta Model graph.
77+
Below is an example of how to use SAMM Aspect Model Graph in your Python code:
7878
```python
7979
from esmf_aspect_meta_model_python import SAMMGraph
8080

core/esmf-aspect-meta-model-python/esmf_aspect_meta_model_python/loader/instantiator/property_instantiator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def _create_property_blank_node(self, element_node: BNode) -> Property:
8282
predicate=self._samm.get_urn(SAMM.property),
8383
)
8484
if not property_node:
85-
raise ValueError(f"Could not found property for the node {element_node}")
85+
raise ValueError(f"Could not find property for the node {element_node}")
8686

8787
return DefaultBlankProperty(
8888
base_element_node=element_node,

core/esmf-aspect-meta-model-python/esmf_aspect_meta_model_python/vocabulary/constants.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,9 @@ class CharacteristicElements:
9797

9898

9999
class SAMMEElements:
100-
TimeSeriesEntity = "TimeSeriesEntity"
100+
FileResource = "FileResource"
101101
Point3d = "Point3d"
102+
TimeSeriesEntity = "TimeSeriesEntity"
102103

103104

104105
class MetaModelElementAttributes:

0 commit comments

Comments
 (0)