Codestyle

This commit is contained in:
Jaime van Kessel 2016-12-06 14:28:25 +01:00
parent 2cf82d1b0b
commit 9f13338c17
3 changed files with 26 additions and 22 deletions

View file

@ -3,6 +3,7 @@ from UM.Application import Application
import LayerView import LayerView
class LayerViewProxy(QObject): class LayerViewProxy(QObject):
def __init__(self, parent = None): def __init__(self, parent = None):
super().__init__(parent) super().__init__(parent)

View file

@ -9,10 +9,10 @@ import os.path #For concatenating the path to the plugin and the relative path t
from UM.Application import Application # To get the machine manager to create the new profile in. from UM.Application import Application # To get the machine manager to create the new profile in.
from UM.Logger import Logger # Logging errors. from UM.Logger import Logger # Logging errors.
from UM.PluginRegistry import PluginRegistry # For getting the path to this plugin's directory. from UM.PluginRegistry import PluginRegistry # For getting the path to this plugin's directory.
from UM.Settings.DefinitionContainer import DefinitionContainer #For getting the current machine's defaults.
from UM.Settings.InstanceContainer import InstanceContainer # The new profile to make. from UM.Settings.InstanceContainer import InstanceContainer # The new profile to make.
from cura.ProfileReader import ProfileReader # The plug-in type to implement. from cura.ProfileReader import ProfileReader # The plug-in type to implement.
## A plugin that reads profile data from legacy Cura versions. ## A plugin that reads profile data from legacy Cura versions.
# #
# It reads a profile from an .ini file, and performs some translations on it. # It reads a profile from an .ini file, and performs some translations on it.

View file

@ -14,6 +14,9 @@ import UM.Logger
import UM.i18n import UM.i18n
catalog = UM.i18n.i18nCatalog("cura") catalog = UM.i18n.i18nCatalog("cura")
## This action allows for certain settings that are "machine only") to be modified.
# It automatically detects machine definitions that it knows how to change and attaches itself to those.
class MachineSettingsAction(MachineAction): class MachineSettingsAction(MachineAction):
def __init__(self, parent = None): def __init__(self, parent = None):
super().__init__("MachineSettingsAction", catalog.i18nc("@action", "Machine Settings")) super().__init__("MachineSettingsAction", catalog.i18nc("@action", "Machine Settings"))