We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
From importer.py:
def import_node_attribute(self, node_attribute): entity = node_attribute['entity'] attribute = node_attribute['attribute'] system = node_attribute['system'] logger.info(f'Importing NodeAttribute {system}.{entity}.{attribute} ...') na_node = self.mdr_graph.get_node_attribute(system, entity, attribute) if na_node is not None: # already exists. Skip # TODO: Update the node return
def import_harmonized_attribute(self, harmonized_attribute): system = harmonized_attribute['system'] entity = harmonized_attribute['entity'] attribute = harmonized_attribute['attribute'] logger.info(f'Importing HarmonizedAttribute {system}.{entity}.{attribute} ...') ha_node = self.mdr_graph.get_harmonized_attribute(system, entity, attribute) if ha_node is not None: # already exists. Skip # TODO: Update return
The text was updated successfully, but these errors were encountered:
joeflack4
No branches or pull requests
Description
From importer.py:
The text was updated successfully, but these errors were encountered: