I have two bases with the Global OP Shortcuts BASE1 and BASE2.
In each base there’s a python file (python1 and python2). I want to import the python file from BASE1 into the python file in BASE2. When I try to do it I get the error: ModuleNotFoundError: No module named ‘python1’.
I’m guessing this is because the bases are in two different levels so the python files can’t see each other. Is there a method that’s usually used for this?
Be careful with the “mod” object. It will search upward for a module with that name. If you want to guarantee the specific DAT, use the .module method.