PrintJobModel.py 268 B

12345678910
  1. # Copyright (c) 2017 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. from PyQt5.QtCore import pyqtSignal, pyqtProperty, QObject, QVariant
  4. class PrintJobModel(QObject):
  5. def __init__(self, parent=None):
  6. super().__init__(parent)