mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-07 13:59:00 +08:00
6 lines
243 B
Python
6 lines
243 B
Python
from cura.MachineAction import MachineAction
|
|
|
|
class UpgradeFirmwareMachineAction(MachineAction):
|
|
def __init__(self):
|
|
super().__init__("UpgradeFirmware", "Upgrade Firmware")
|
|
self._qml_url = "UpgradeFirmwareMachineAction.qml" |