mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-12 09:17:50 -06:00
10 lines
290 B
Python
10 lines
290 B
Python
from PyQt5.Qt import QObject
|
|
|
|
from cura.Machines.ContainerNode import ContainerNode
|
|
|
|
|
|
class ContainerGroup(QObject):
|
|
def __init__(self, parent = None):
|
|
super().__init__(parent)
|
|
self.node_for_global = None # type: ContainerNode
|
|
self.nodes_for_extruders = dict()
|