In the section that describes the limitations of Load and Run Script, the following code is shown:
import sys
import os
sys.path.append(os.path.dirname(os.path.realpath(_file_)))
import <your module here>
But, _file_
needs to be __file__
In the section that describes the limitations of Load and Run Script, the following code is shown:
import sys
import os
sys.path.append(os.path.dirname(os.path.realpath(_file_)))
import <your module here>
But, _file_
needs to be __file__