From 3fc6778802a49d6aef4b61c18405ae350bc3baca Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Tue, 21 Nov 2023 13:12:27 -0600 Subject: [PATCH] v2.0: refactor --- healthcareio/__init__.py | 6 +++--- healthcareio/x12/export/__init___.py | 2 +- healthcareio/x12/util/__init__.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/healthcareio/__init__.py b/healthcareio/__init__.py index 4a95539..d5e8eaa 100644 --- a/healthcareio/__init__.py +++ b/healthcareio/__init__.py @@ -15,9 +15,9 @@ Usage : """ -from healthcareio import analytics -from healthcareio import server -from healthcareio import export +# from healthcareio import analytics +# from healthcareio import server +# from healthcareio import export import healthcareio.x12 as x12 import healthcareio.params as params diff --git a/healthcareio/x12/export/__init___.py b/healthcareio/x12/export/__init___.py index c2166e5..cd0ab3a 100644 --- a/healthcareio/x12/export/__init___.py +++ b/healthcareio/x12/export/__init___.py @@ -11,7 +11,7 @@ import healthcareio.x12.plugins def primary_key (**_args) : _plugins = _args['plugins'] for key in _plugins : - _lpointers = + # _lpointers = def init (**_args): if 'path' in _args : _path = _args['path'] diff --git a/healthcareio/x12/util/__init__.py b/healthcareio/x12/util/__init__.py index 823d300..68832e4 100644 --- a/healthcareio/x12/util/__init__.py +++ b/healthcareio/x12/util/__init__.py @@ -2,7 +2,7 @@ This package contains tools used across the various modules, these tools actually "do the work" We intend to have these tools be Object-Oriented by design so as to not run into any concurrency issues """ -from . import file, document, common +from . import file, document from healthcareio import x12 from multiprocessing import Process # class X12Engine(Process):