FeatureDecoupling
FeatureDecoupling copied to clipboard
Python version
Hi, what version of python is used for this project. I am having some issues loading modules like imp. Thanks
imp.load_source which is deprecated in Python 3 you can use
from importlib.machinery import SourceFileLoader
instead :)