mirror of
https://github.com/Ultimaker/Cura.git
synced 2026-01-22 21:26:59 -07:00
8 lines
206 B
Python
8 lines
206 B
Python
from Cura.Application import Application
|
|
|
|
class PrinterApplication(Application):
|
|
def __init__(self):
|
|
super(Application, self).__init__()
|
|
|
|
def run(self):
|
|
print("Shoopdawoop")
|