Skip to content

Commit

Permalink
remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
ir4y committed Nov 18, 2023
1 parent 32623fc commit c31281e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions fhirpathpy/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@
for d in dirs:
pd = os.path.join(current_dir, d)
if os.path.isdir(pd):
print(d)
for f in os.listdir(pd):
with open(os.path.join(pd, f)) as fd:
if f.endswith(".json"):
print(pd,f)
models[d][f[:-5]] = json.loads(fd.read())

0 comments on commit c31281e

Please sign in to comment.