mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 07:27:29 -06:00
Fixed inheritence bug
This commit is contained in:
parent
4e034fbbd0
commit
ec6cb3ffdc
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ from Cura.Application import Application
|
|||
|
||||
class PrinterApplication(Application):
|
||||
def __init__(self):
|
||||
super(Application, self).__init__()
|
||||
super(PrinterApplication, self).__init__()
|
||||
|
||||
def run(self):
|
||||
print("Shoopdawoop")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue