mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-01 16:24:41 +08:00
9 lines
239 B
Python
9 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()
|