mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-17 03:37:48 -06:00
10 lines
232 B
Python
10 lines
232 B
Python
# Copyright (c) 2017 Ultimaker B.V.
|
|
|
|
from PyQt5.QtCore import QObject
|
|
|
|
from cura.Sidebar.SidebarView import SidebarView
|
|
|
|
class SettingsSidebarView(QObject, SidebarView):
|
|
|
|
def __init__(self):
|
|
super().__init__()
|