mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-04 01:53:58 +08:00
8 lines
234 B
Python
8 lines
234 B
Python
from Cura.Backend.Command import Command
|
|
|
|
class TransferVertCommand(Command):
|
|
def __init__(self):
|
|
super(TransferVertCommand,self).__init__()
|
|
|
|
def send(self):
|
|
self._socket.sendData(self._id, self._data) |