mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 23:46:22 -06:00
8 lines
No EOL
214 B
Python
8 lines
No EOL
214 B
Python
from cura.MachineAction import MachineAction
|
|
|
|
class DiscoverUM3Action(MachineAction):
|
|
def __init__(self):
|
|
super().__init__("DiscoverUM3Action", "Discover printers")
|
|
|
|
def _execute(self):
|
|
pass |