chiark / gitweb /
Clean up removed code.
[cura.git] / Cura / __init__.py
index 6e968ba14129cbd10b96c7ca4fbe03d8d79dd035..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,9 +0,0 @@
-#This is required to workaround the python import bug where relative imports don't work if the module is imported as a main module.
-import os
-import sys
-numberOfLevelsDeepInPackageHierarchy = 0
-packageFilePath = os.path.abspath(__file__)
-for level in range( numberOfLevelsDeepInPackageHierarchy + 1 ):
-       packageFilePath = os.path.dirname( packageFilePath )
-if packageFilePath not in sys.path:
-       sys.path.insert( 0, packageFilePath )