From 6ba7e2bce4bdedbf815e66bccac97dd213757fac Mon Sep 17 00:00:00 2001 From: Dave Chen Date: Tue, 27 Aug 2024 13:19:50 -0400 Subject: [PATCH] Adjusted for pylint --- dicom2stl/__init__.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dicom2stl/__init__.py b/dicom2stl/__init__.py index d4891da..a1f56eb 100644 --- a/dicom2stl/__init__.py +++ b/dicom2stl/__init__.py @@ -1,6 +1,9 @@ -import dicom2stl +""" dicom2stl - Convert DICOM files to STL files """ +from dicom2stl import Dicom2STL import dicom2stl.utils.parseargs + + def main(): """Entry point for the application script""" args = dicom2stl.utils.parseargs.parseargs() - dicom2stl.Dicom2STL(args) + Dicom2STL.Dicom2STL(args)