Skip to content

Commit

Permalink
Added update_comment field to csv converter
Browse files Browse the repository at this point in the history
  • Loading branch information
paynejd committed Mar 29, 2022
1 parent 318c2fe commit 24e3fce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion ocldev/oclcsvtojsonconverter.py
Original file line number Diff line number Diff line change
Expand Up @@ -903,9 +903,11 @@ class OclStandardCsvToJsonConverter(OclCsvToJsonConverter):
{'resource_field': 'retired', 'column': 'retired', 'required': False},
{'resource_field': 'external_id', 'column': 'external_id', 'required': False},
{'resource_field': 'concept_class', 'column': 'concept_class'},
{'resource_field': 'parent_concept_urls', 'column': 'parent_concept_urls', 'default': None, 'datatype': 'list'},
{'resource_field': 'parent_concept_urls', 'column': 'parent_concept_urls',
'default': None, 'datatype': 'list'},
{'resource_field': 'datatype', 'column': 'datatype', 'default': 'None'},
{'resource_field': 'owner', 'column': 'owner_id'},
{'resource_field': 'update_comment', 'column': 'update_comment'},
{'resource_field': 'owner_type', 'column': 'owner_type',
'default': oclconstants.OclConstants.RESOURCE_TYPE_ORGANIZATION},
{'resource_field': 'source', 'column': 'source'},
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name='ocldev',
version='0.1.89',
version='0.1.90',
author='Open Concept Lab',
author_email='[email protected]',
description='Python development library for working with OCL resources and APIs',
Expand Down

0 comments on commit 24e3fce

Please sign in to comment.