Selaa lähdekoodia

bug fix with imports

Steve Nyemba 4 vuotta sitten
vanhempi
commit
59ea738f0f
3 muutettua tiedostoa jossa 3 lisäystä ja 2 poistoa
  1. 1 0
      healthcareio/__init__.py
  2. 1 1
      healthcareio/healthcare-io.py
  3. 1 1
      setup.py

+ 1 - 0
healthcareio/__init__.py

@@ -16,4 +16,5 @@ Usage :
 """
 
 from healthcareio import analytics
+import healthcareio.x12 as x12
 # from healthcareio import server

+ 1 - 1
healthcareio/healthcare-io.py

@@ -42,7 +42,7 @@ import sys
 import numpy as np
 from multiprocessing import Process
 import time
-import x12
+from healthcareio import x12
 
 PATH = os.sep.join([os.environ['HOME'],'.healthcareio'])
 OUTPUT_FOLDER = os.sep.join([os.environ['HOME'],'healthcare-io'])

+ 1 - 1
setup.py

@@ -8,7 +8,7 @@ import sys
 def read(fname):
     return open(os.path.join(os.path.dirname(__file__), fname)).read() 
 args = {
-    "name":"healthcareio","version":"1.3.2",
+    "name":"healthcareio","version":"1.3.3",
     "author":"Vanderbilt University Medical Center",
     "author_email":"steve.l.nyemba@vumc.org",
     "license":"MIT",