diff --git a/src/Mod/Part/Init.py b/src/Mod/Part/Init.py index 6423a47ae504..b81a441b45da 100644 --- a/src/Mod/Part/Init.py +++ b/src/Mod/Part/Init.py @@ -51,11 +51,3 @@ def Info(self): FreeCAD.addExportType("IGES format (*.iges *.igs)","Part") FreeCAD.addImportType("STEP with colors (*.step *.stp)","ImportGui") FreeCAD.addExportType("STEP with colors (*.step *.stp)","ImportGui") - -# weird behaviour as 64-bit application on Windows: -# some modules like Sketcher doesn't load if Part is not loaded before with this error: -# DLL load failed: The specified procedure could not be found -import platform -if platform.architecture()[0] == '64bit' and platform.system() == 'Windows': - import Part -