Steve Nyemba пре 1 година
родитељ
комит
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.params as params
 

+ 1 - 1
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']

+ 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"
 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):