mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-23 22:54:01 -06:00
9 lines
No EOL
262 B
Python
9 lines
No EOL
262 B
Python
from cura.MachineAction import MachineAction
|
|
|
|
class DiscoverUM3Action(MachineAction):
|
|
def __init__(self):
|
|
super().__init__("DiscoverUM3Action", "Discover printers")
|
|
self._qml_url = "DiscoverUM3Action.qml"
|
|
|
|
def _execute(self):
|
|
pass |