From e2093241a88518a165e0b39e62ee4275248dfed0 Mon Sep 17 00:00:00 2001 From: Eren Dogan Date: Wed, 16 Nov 2022 20:38:55 -0800 Subject: [PATCH] Export globals.py in library's __init__.py --- __init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index 5eca3f7e..7ac5d32f 100644 --- a/__init__.py +++ b/__init__.py @@ -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) \ No newline at end of file + sys.path.insert(0, OPENRAM_HOME) + +# Export everything in globals.py as part of "openram" +from globals import *