Parcourir la source

bug fix for python 3.8

Steve Nyemba il y a 4 ans
Parent
commit
2a54502403
2 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 1 1
      healthcareio/server/__init__.py
  2. 2 2
      healthcareio/server/proxy.py

+ 1 - 1
healthcareio/server/__init__.py

@@ -8,7 +8,7 @@ import smart
 import transport
 import pandas as pd
 import numpy as np
-import x12
+from healthcareio import x12
 
 from multiprocessing import Process
 from flask_socketio import SocketIO, emit, disconnect,send

+ 2 - 2
healthcareio/server/proxy.py

@@ -4,10 +4,10 @@
 import os
 import transport
 import numpy as np
-import x12
+from healthcareio import x12
 import pandas as pd
 import smart
-from analytics import Apex
+from healthcareio.analytics import Apex
 import time
 class get :
     PROCS = []