From c31281e9e2b35f8299095f3caf8e3f37a2eaa277 Mon Sep 17 00:00:00 2001 From: Ilya Beda Date: Sat, 18 Nov 2023 16:53:30 +1100 Subject: [PATCH] remove debug print --- fhirpathpy/models/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/fhirpathpy/models/__init__.py b/fhirpathpy/models/__init__.py index 487b359..5eac75a 100644 --- a/fhirpathpy/models/__init__.py +++ b/fhirpathpy/models/__init__.py @@ -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())