You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to suggest to add a namespace property to Concept class:
Changes to Concept class:
self.name: str = name
self.namespace: str or None = None -- add this line
self.substitution_group: str or None = None
Then in instance.py file add those lines:
concept: Concept = tax.concepts[tax.name_id_map[concept_name]]
concept.namespace = taxonomy_ns -- add this in line 395
concept: Concept = tax.concepts[tax.name_id_map[concept_name]]
concept.namespace = ns_map[taxonomy_prefix] -- add this in line 503
dimension_concept: Concept = dimension_tax.concepts[dimension_tax.name_id_map[dimension_concept_name]]
dimension_concept.namespace = ns_map[dimension_prefix] -- add this in line 657
member_concept: Concept = member_tax.concepts[member_tax.name_id_map[member_concept_name]]
member_concept.namespace = ns_map[member_prefix] -- add this
The text was updated successfully, but these errors were encountered:
I would like to suggest to add a namespace property to Concept class:
Changes to Concept class:
Then in instance.py file add those lines:
The text was updated successfully, but these errors were encountered: