mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 07:27:29 -06:00
8 lines
213 B
Python
8 lines
213 B
Python
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
|