v2.0: refactor

This commit is contained in:
Steve Nyemba 2023-11-21 13:12:27 -06:00
parent fd4baef247
commit 3fc6778802
3 changed files with 5 additions and 5 deletions

View File

@ -15,9 +15,9 @@ Usage :
""" """
from healthcareio import analytics # from healthcareio import analytics
from healthcareio import server # from healthcareio import server
from healthcareio import export # from healthcareio import export
import healthcareio.x12 as x12 import healthcareio.x12 as x12
import healthcareio.params as params import healthcareio.params as params

View File

@ -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']

View File

@ -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):