Skip to content

Commit

Permalink
Update QualityControlChecker.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ryma2fhir authored Apr 22, 2024
1 parent f1ae111 commit 95f0bf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions QualityControlChecker/QualityControlChecker.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,14 +270,14 @@ def printWarnings(warnings, file):
if file.endswith("xml"):
root = openXMLFile(path,file)
if root == None:
printWarnings(warnings, file)
printWarnings(warnings, file)
continue
warnings = checkContactDetailsXML(root, path, warnings)
elements,warnings = getXMLCoreElements(path, file, warnings)
elif file.endswith("json"):
jsonFile = openJSONFile(path,file)
if jsonFile == None:
printWarnings(warnings, file)
printWarnings(warnings, file)
continue
warnings = checkContactDetailsJSON(jsonFile, warnings)
elements,warnings = getJSONCoreElements(jsonFile, warnings)
Expand Down

0 comments on commit 95f0bf4

Please sign in to comment.