mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 14:37:29 -06:00
9 lines
203 B
Python
9 lines
203 B
Python
from cura.MachineAction import MachineAction
|
|
|
|
class BedLevelMachineAction(MachineAction):
|
|
def __init__(self):
|
|
super().__init__("BedLevel", "Level bed")
|
|
|
|
def _execute(self):
|
|
pass
|
|
|