From fb434ec81a8dddbf103c89046829526c4066f5d6 Mon Sep 17 00:00:00 2001 From: ChrisTerBeke Date: Fri, 26 Jul 2019 15:08:49 +0200 Subject: [PATCH] Remove unneeded import --- plugins/UM3NetworkPrinting/src/UM3OutputDevicePlugin.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/plugins/UM3NetworkPrinting/src/UM3OutputDevicePlugin.py b/plugins/UM3NetworkPrinting/src/UM3OutputDevicePlugin.py index 05c5ad1590..7f7f69a241 100644 --- a/plugins/UM3NetworkPrinting/src/UM3OutputDevicePlugin.py +++ b/plugins/UM3NetworkPrinting/src/UM3OutputDevicePlugin.py @@ -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):