mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
11 lines
310 B
Python
11 lines
310 B
Python
# Copyright (c) 2016 Ultimaker B.V.
|
|
# Cura is released under the terms of the AGPLv3 or higher.
|
|
|
|
from PyQt5.QtCore import QObject
|
|
from UM.PluginObject import PluginObject
|
|
|
|
|
|
class MachineAction(QObject, PluginObject):
|
|
def __init__(self, key, label = ""):
|
|
self._key = key
|
|
self._label = label
|