fix bug that only occurs on windows
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -21,7 +21,11 @@ import time
|
|||||||
importedModules = {}
|
importedModules = {}
|
||||||
|
|
||||||
engineList = os.listdir( 'bin/engines' );
|
engineList = os.listdir( 'bin/engines' );
|
||||||
engineList.pop( 0 )
|
counter = 0;
|
||||||
|
for element in engineList:
|
||||||
|
if ( element == '__pycache__' ):
|
||||||
|
engineList.pop( counter );
|
||||||
|
counter += 1;
|
||||||
|
|
||||||
for element in engineList:
|
for element in engineList:
|
||||||
importedModules[ element ] = importlib.import_module( 'bin.engines.' + element + '.' + element ).Scaler()
|
importedModules[ element ] = importlib.import_module( 'bin.engines.' + element + '.' + element ).Scaler()
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
curl -o ./pythonInstaller.exe https://www.python.org/ftp/python/3.10.11/python-3.10.11-amd64.exe
|
curl -o ./pythonInstaller.exe https://www.python.org/ftp/python/3.11.3/python-3.11.3-amd64.exe
|
||||||
|
|
||||||
wine pythonInstaller.exe
|
wine pythonInstaller.exe
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,11 @@ import multiprocessing
|
|||||||
import json
|
import json
|
||||||
|
|
||||||
engineList = os.listdir( 'bin/engines' );
|
engineList = os.listdir( 'bin/engines' );
|
||||||
engineList.pop( 0 )
|
counter = 0;
|
||||||
|
for element in engineList:
|
||||||
|
if ( element == '__pycache__' ):
|
||||||
|
engineList.pop( counter );
|
||||||
|
counter += 1;
|
||||||
|
|
||||||
engineInfo = {}
|
engineInfo = {}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user