Update 'risk/__init__.py'

adjusting python version 3 and 2
This commit is contained in:
weiyi 2019-03-08 14:37:52 -06:00
parent 25b30d2c2b
commit e33223f6b2
1 changed files with 5 additions and 1 deletions

View File

@ -66,4 +66,8 @@ Basic examples that illustrate usage of the the framework are in the notebook fo
"""
import sys
if sys.version_info.major == 2:
from risk import deid
else:
from risk.risk import deid