bug fix -- no more synonyms

This commit is contained in:
Steve Nyemba 2021-02-12 18:28:26 -06:00
parent 0bbcff95dc
commit 5ef1f31907
2 changed files with 7 additions and 5 deletions

View File

@ -290,7 +290,8 @@ class Parser (Process):
if type(value[objkey]) == dict :
continue
if 'syn' in config and value[objkey] in config['syn'] :
value[objkey] = config['syn'][ value[objkey]]
# value[objkey] = config['syn'][ value[objkey]]
pass
if key in rewrite :
@ -309,7 +310,8 @@ class Parser (Process):
else:
if 'syn' in config and value in config['syn'] :
value = config['syn'][value]
# value = config['syn'][value]
pass
if type(value) == dict :
@ -513,7 +515,7 @@ class Parser (Process):
schema = [key for key in claim.keys() if type(claim[key]) == list]
if schema :
schema = {"properties":dict.fromkeys(schema,{"mergeStrategy":"append"})}
print (schema)
else:
schema = {}
merger = jsonmerge.Merger(schema)

View File

@ -8,7 +8,7 @@ import sys
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
args = {
"name":"healthcareio","version":"1.6.2.2",
"name":"healthcareio","version":"1.6.2.3",
"author":"Vanderbilt University Medical Center",
"author_email":"steve.l.nyemba@vumc.org",
"include_package_data":True,