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/Machines/QualityNode.py')
-rw-r--r--cura/Machines/QualityNode.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/cura/Machines/QualityNode.py b/cura/Machines/QualityNode.py
index 7696dfb117..dcbe486952 100644
--- a/cura/Machines/QualityNode.py
+++ b/cura/Machines/QualityNode.py
@@ -13,12 +13,14 @@ if TYPE_CHECKING:
from cura.Machines.MachineNode import MachineNode
-## Represents a quality profile in the container tree.
-#
-# This may either be a normal quality profile or a global quality profile.
-#
-# Its subcontainers are intent profiles.
class QualityNode(ContainerNode):
+ """Represents a quality profile in the container tree.
+
+ This may either be a normal quality profile or a global quality profile.
+
+ Its subcontainers are intent profiles.
+ """
+
def __init__(self, container_id: str, parent: Union["MaterialNode", "MachineNode"]) -> None:
super().__init__(container_id)
self.parent = parent