mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
9 lines
209 B
Python
9 lines
209 B
Python
from PyQt5.QtCore import pyqtSignal, QObject
|
|
|
|
|
|
class CuraAppSignals(QObject):
|
|
|
|
showMoreInfoOnAnonymousDataCollection = pyqtSignal()
|
|
|
|
def __init__(self, parent = None):
|
|
super().__init__(parent)
|