Remove unneeded import

This commit is contained in:
ChrisTerBeke 2019-07-26 15:08:49 +02:00
parent 3c1b377308
commit fb434ec81a

View file

@ -1,6 +1,6 @@
# Copyright (c) 2019 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
from typing import Optional, TYPE_CHECKING, Callable
from typing import Optional, Callable
from cura.CuraApplication import CuraApplication
@ -10,9 +10,6 @@ from plugins.UM3NetworkPrinting.src.Network.NetworkOutputDeviceManager import Ne
from .Cloud.CloudOutputDeviceManager import CloudOutputDeviceManager
if TYPE_CHECKING:
from UM.OutputDevice.OutputDevicePlugin import OutputDevicePlugin
## This plugin handles the discovery and networking for Ultimaker 3D printers that support network and cloud printing.
class UM3OutputDevicePlugin(OutputDevicePlugin):