Add doc for MachineSettingsManager

This commit is contained in:
Lipu Fei 2019-03-28 14:31:33 +01:00
parent 397add861f
commit 82471a0e39

View file

@ -1,11 +1,16 @@
# Copyright (c) 2019 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
from typing import Any, Dict, Optional, TYPE_CHECKING
from typing import Optional
from PyQt5.QtCore import Qt, QObject, pyqtSlot
from PyQt5.QtCore import QObject, pyqtSlot
from UM.i18n import i18nCatalog
#
# This manager provides (convenience) functions to the Machine Settings Dialog QML to update certain machine settings.
#
class MachineSettingsManager(QObject):
def __init__(self, parent: Optional["QObject"] = None) -> None: