resolve module path in EDA example script

This commit is contained in:
dandds 2018-09-11 11:34:08 -04:00
parent 2e07c8ebda
commit b5cb5d91db

View File

@ -1,3 +1,10 @@
# Add root project dir to the python path
import os
import sys
parent_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), ".."))
sys.path.append(parent_dir)
from atst.app import make_config, make_app
from atst.eda_client import EDAClient