From 98e3c107eaddb0bd55f3d2fe25f17a59c770144c Mon Sep 17 00:00:00 2001 From: Mohit Yadav Date: Sun, 29 Oct 2023 20:38:52 +0000 Subject: [PATCH] improve README --- README.MD | 1 + tests/test_dcmfile_parser.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.MD b/README.MD index 893a45c..0b19999 100644 --- a/README.MD +++ b/README.MD @@ -13,6 +13,7 @@ Parser for DCM files [Data Conversion Format](https://www.etas.com/download-cent 1. **Parsing the DCM file**: ```python + from dcmfile_parser import DCMParser , DCMObject dcmfile_parser = DCMParser("path/to/dcm/file") ``` diff --git a/tests/test_dcmfile_parser.py b/tests/test_dcmfile_parser.py index 733e569..ac3d489 100644 --- a/tests/test_dcmfile_parser.py +++ b/tests/test_dcmfile_parser.py @@ -1,4 +1,5 @@ -import os,sys +import os +import sys testdir = os.path.dirname(__file__) module_dir = "../" sys.path.insert(0, os.path.abspath(os.path.join(testdir, module_dir)))