From 3dec025cb881e171dc89fa293c18afe13c32ed15 Mon Sep 17 00:00:00 2001 From: "j.delarago" Date: Tue, 31 May 2022 08:54:08 +0200 Subject: [PATCH] Update comment to clarify function usage. CURA-8610 --- cura/CuraPackageManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/CuraPackageManager.py b/cura/CuraPackageManager.py index b23422fbbd..813ce40763 100644 --- a/cura/CuraPackageManager.py +++ b/cura/CuraPackageManager.py @@ -53,7 +53,7 @@ class CuraPackageManager(PackageManager): super().initialize() def getMaterialFilePackageId(self, file_name: str, guid: str) -> str: - """Get the id of the material package that contains file_name""" + """Get the id of the installed material package that contains file_name""" for material_package in [f for f in os.scandir(self._installation_dirs_dict["materials"]) if f.is_dir()]: package_id = material_package.name