mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 07:27:29 -06:00
8 lines
239 B
Python
8 lines
239 B
Python
from Cura.Wx.WxApplication import WxApplication
|
|
|
|
class PrinterApplication(WxApplication):
|
|
def __init__(self):
|
|
super(PrinterApplication, self).__init__()
|
|
|
|
def run(self):
|
|
super(PrinterApplication, self).run()
|