FeatureDecoupling icon indicating copy to clipboard operation
FeatureDecoupling copied to clipboard

Python version

Open fatima711 opened this issue 5 years ago • 1 comments

Hi, what version of python is used for this project. I am having some issues loading modules like imp. Thanks

fatima711 avatar Oct 12 '20 16:10 fatima711

imp.load_source which is deprecated in Python 3 you can use

from importlib.machinery import SourceFileLoader

instead :)

MrPranav101 avatar Nov 09 '20 23:11 MrPranav101