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/QualityChangesGroup.py')
-rw-r--r--cura/Machines/QualityChangesGroup.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/cura/Machines/QualityChangesGroup.py b/cura/Machines/QualityChangesGroup.py
index 655060070b..668fff785a 100644
--- a/cura/Machines/QualityChangesGroup.py
+++ b/cura/Machines/QualityChangesGroup.py
@@ -6,12 +6,12 @@ from typing import Any, Dict, Optional
from PyQt5.QtCore import QObject, pyqtProperty, pyqtSignal
-## Data struct to group several quality changes instance containers together.
-#
-# Each group represents one "custom profile" as the user sees it, which
-# contains an instance container for the global stack and one instance
-# container per extruder.
class QualityChangesGroup(QObject):
+ """Data struct to group several quality changes instance containers together.
+
+ Each group represents one "custom profile" as the user sees it, which contains an instance container for the
+ global stack and one instance container per extruder.
+ """
def __init__(self, name: str, quality_type: str, intent_category: str, parent: Optional["QObject"] = None) -> None:
super().__init__(parent)