mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 15:07:28 -06:00
8 lines
No EOL
234 B
Python
8 lines
No EOL
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) |