mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 11:17:49 -06:00
Remove ABC
This commit is contained in:
parent
fa5b083b74
commit
529b483f36
1 changed files with 1 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
||||||
# Copyright (c) 2019 Ultimaker B.V.
|
# Copyright (c) 2019 Ultimaker B.V.
|
||||||
# Cura is released under the terms of the LGPLv3 or higher.
|
# Cura is released under the terms of the LGPLv3 or higher.
|
||||||
import os
|
import os
|
||||||
from abc import ABC
|
|
||||||
from typing import List, Optional, Dict
|
from typing import List, Optional, Dict
|
||||||
|
|
||||||
from PyQt5.QtCore import pyqtProperty, pyqtSignal, QObject, pyqtSlot, QUrl
|
from PyQt5.QtCore import pyqtProperty, pyqtSignal, QObject, pyqtSlot, QUrl
|
||||||
|
@ -23,7 +22,7 @@ from .Models.Http.ClusterPrintJobStatus import ClusterPrintJobStatus
|
||||||
## Output device class that forms the basis of Ultimaker networked printer output devices.
|
## Output device class that forms the basis of Ultimaker networked printer output devices.
|
||||||
# Currently used for local networking and cloud printing using Ultimaker Connect.
|
# Currently used for local networking and cloud printing using Ultimaker Connect.
|
||||||
# This base class primarily contains all the Qt properties and slots needed for the monitor page to work.
|
# This base class primarily contains all the Qt properties and slots needed for the monitor page to work.
|
||||||
class UltimakerNetworkedPrinterOutputDevice(NetworkedPrinterOutputDevice, ABC):
|
class UltimakerNetworkedPrinterOutputDevice(NetworkedPrinterOutputDevice):
|
||||||
|
|
||||||
# Signal emitted when the status of the print jobs for this cluster were changed over the network.
|
# Signal emitted when the status of the print jobs for this cluster were changed over the network.
|
||||||
printJobsChanged = pyqtSignal()
|
printJobsChanged = pyqtSignal()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue