Browse Source

v2.0: refactor

Steve Nyemba 1 year ago
parent
commit
3fc6778802

+ 3 - 3
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.x12 as x12
 import healthcareio.params as params
 import healthcareio.params as params
 
 

+ 1 - 1
healthcareio/x12/export/__init___.py

@@ -11,7 +11,7 @@ import healthcareio.x12.plugins
 def primary_key (**_args) :
 def primary_key (**_args) :
     _plugins = _args['plugins']
     _plugins = _args['plugins']
     for key in _plugins :
     for key in _plugins :
-        _lpointers = 
+        # _lpointers = 
 def init (**_args):
 def init (**_args):
     if 'path' in _args :
     if 'path' in _args :
         _path = _args['path']
         _path = _args['path']

+ 1 - 1
healthcareio/x12/util/__init__.py

@@ -2,7 +2,7 @@
 This package contains tools used across the various modules, these tools actually "do the work"
 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
 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 healthcareio import x12
 from multiprocessing import Process
 from multiprocessing import Process
 # class X12Engine(Process):
 # class X12Engine(Process):