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:
authorSimon Edwards <s.edwards@ultimaker.com>2017-01-17 18:57:37 +0300
committerSimon Edwards <s.edwards@ultimaker.com>2017-01-17 18:57:37 +0300
commit1b43e4981ed4b6623c9f0553d9269bf07c36ed9e (patch)
treeab61e4ecb165c3ae33346342cca84670a53d04cb /plugins/RemovableDriveOutputDevice
parentfb70eb6813de4b7632be0abe7b3d5da82d157a49 (diff)
Fixes for all of the plugins. Added a script to invoke mypy. (I'm stiiiick of .bat files. They are just broken.)
Diffstat (limited to 'plugins/RemovableDriveOutputDevice')
-rw-r--r--plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py b/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py
index 14a4681bc3..42f3935f65 100644
--- a/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py
+++ b/plugins/RemovableDriveOutputDevice/WindowsRemovableDrivePlugin.py
@@ -8,7 +8,7 @@ catalog = i18nCatalog("cura")
from . import RemovableDrivePlugin
import string
-import ctypes
+import ctypes # type: ignore
from ctypes import wintypes # Using ctypes.wintypes in the code below does not seem to work
from UM.i18n import i18nCatalog