Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'cura/CuraPackageManager.py')
-rw-r--r--cura/CuraPackageManager.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cura/CuraPackageManager.py b/cura/CuraPackageManager.py
index 24a7bda267..aaa9260605 100644
--- a/cura/CuraPackageManager.py
+++ b/cura/CuraPackageManager.py
@@ -27,8 +27,8 @@ class CuraPackageManager(QObject):
self._plugin_registry = self._application.getPluginRegistry()
#JSON files that keep track of all installed packages.
- self._user_package_management_file_path = None
- self._bundled_package_management_file_path = None
+ self._user_package_management_file_path = None #type: str
+ self._bundled_package_management_file_path = None #type: str
for search_path in Resources.getSearchPaths():
candidate_bundled_path = os.path.join(search_path, "bundled_packages.json")
if os.path.exists(candidate_bundled_path):