mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 15:13:56 -06:00
12 lines
215 B
Python
12 lines
215 B
Python
from UM.Stage import Stage
|
|
|
|
class CuraStage(Stage):
|
|
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def getMainView(self):
|
|
return None
|
|
|
|
def getSidebarView(self):
|
|
return None
|