Export globals.py in library's __init__.py

This commit is contained in:
Eren Dogan 2022-11-16 20:38:55 -08:00
parent be7c21ab64
commit e2093241a8
1 changed files with 4 additions and 1 deletions

View File

@ -19,4 +19,7 @@ if not os.path.isdir(OPENRAM_HOME):
assert False
if OPENRAM_HOME not in sys.path:
sys.path.insert(0, OPENRAM_HOME)
sys.path.insert(0, OPENRAM_HOME)
# Export everything in globals.py as part of "openram"
from globals import *