Is there a neat way to somehow execute/interact with logic from scripts adjacent to PythonModule? For example, I'd like to define a class in a separate script and then use it in PythonModule.
assuming a have another script called "Editor_PythonModule"
importtoolutils# load in the other python modules in the OTLeditor=toolutils.createModuleFromSection("editor",kwargs["type"],"Editor_PythonModule")editor.blah()