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:
authorjoeydelarago <joeydelarago@gmail.com>2022-08-23 14:11:17 +0300
committerjoeydelarago <joeydelarago@gmail.com>2022-08-23 14:11:17 +0300
commitbedb76d516e4a58058010f7d9a9612d6eee75227 (patch)
treea04980a50a41adc5f18968fd66c820a0f2cdd878 /cura/Settings
parent7ffa770fb47c2a4acbb0700378ef0b96ea519523 (diff)
Update comment
CURA-9514
Diffstat (limited to 'cura/Settings')
-rw-r--r--cura/Settings/AbstractMachine.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cura/Settings/AbstractMachine.py b/cura/Settings/AbstractMachine.py
index a904058290..a760421c60 100644
--- a/cura/Settings/AbstractMachine.py
+++ b/cura/Settings/AbstractMachine.py
@@ -16,10 +16,10 @@ class AbstractMachine(GlobalStack):
@classmethod
def getMachines(cls, abstract_machine: ContainerStack) -> List[ContainerStack]:
- """ Fetches containers for all machines that match definition with an abstract machine.
+ """ Fetches all container stacks that match definition_id with an abstract machine.
:param abstractMachine: The abstract machine stack.
- :return: A list of Containers or an empty list if stack is not an "abstract_machine"
+ :return: A list of Containers or an empty list if abstract_machine is not an "abstract_machine"
"""
if not abstract_machine.getMetaDataEntry("type") == "abstract_machine":
return []