Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2017-10-04 15:55:36 +0300
committerGhostkeeper <rubend@tutanota.com>2017-10-04 15:55:36 +0300
commit0fab6fcc2136b367ba939d38e2d27b06f16250ac (patch)
treea3a2adde13f03a50f26ca9e278ea5752b351127a /plugins/RemovableDriveOutputDevice
parent179ea654cc7f4596ca5046456edf7b7a70d2d2d1 (diff)
parentfc8cbedc8291033d3e60e17fedb72b71acabc6d3 (diff)
Merge branch 'thopiekar-RemovableDrivePlugin-cleanup'
Diffstat (limited to 'plugins/RemovableDriveOutputDevice')
-rw-r--r--plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py b/plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py
index 7f924b8ee5..ac20f572be 100644
--- a/plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py
+++ b/plugins/RemovableDriveOutputDevice/RemovableDrivePlugin.py
@@ -1,15 +1,19 @@
# Copyright (c) 2015 Ultimaker B.V.
# Uranium is released under the terms of the LGPLv3 or higher.
+# Python build-ins
import threading
import time
+# Uranium/Messaging
from UM.Message import Message
-from UM.OutputDevice.OutputDevicePlugin import OutputDevicePlugin
from UM.Logger import Logger
+# Uranium/IO
+from UM.OutputDevice.OutputDevicePlugin import OutputDevicePlugin
from . import RemovableDriveOutputDevice
-from UM.Logger import Logger
+
+# Uranium/l18n
from UM.i18n import i18nCatalog
catalog = i18nCatalog("cura")