mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-07-04 16:15:11 +08:00
8 lines
214 B
Python
8 lines
214 B
Python
from cura.MachineAction import MachineAction
|
|
|
|
class DiscoverUM3Action(MachineAction):
|
|
def __init__(self):
|
|
super().__init__("DiscoverUM3Action", "Discover printers")
|
|
|
|
def _execute(self):
|
|
pass |