mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-03 12:03:57 -06:00
Fix type signature of function
Co-authored-by: Joey de l'Arago <joeydelarago@gmail.com>
This commit is contained in:
parent
a645fa7d96
commit
f297909a82
1 changed files with 1 additions and 1 deletions
|
@ -1632,7 +1632,7 @@ class MachineManager(QObject):
|
||||||
# - "my_profile - Fine" (only based on a default quality, no intent involved)
|
# - "my_profile - Fine" (only based on a default quality, no intent involved)
|
||||||
# - "my_profile - Engineering - Fine" (based on an intent)
|
# - "my_profile - Engineering - Fine" (based on an intent)
|
||||||
@pyqtProperty("QList<QString>", notify = activeQualityDisplayNameChanged)
|
@pyqtProperty("QList<QString>", notify = activeQualityDisplayNameChanged)
|
||||||
def activeQualityDisplayNameStringParts(self) -> [str]:
|
def activeQualityDisplayNameStringParts(self) -> List[str]:
|
||||||
result_map = self.activeQualityDisplayNameMap
|
result_map = self.activeQualityDisplayNameMap
|
||||||
string_parts = []
|
string_parts = []
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue