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>2018-02-01 12:34:38 +0300
committerGhostkeeper <rubend@tutanota.com>2018-02-01 12:34:38 +0300
commitcfb5d71c2796d1e5dae96f8e03c37f728482f9e2 (patch)
tree613fa0b278de971414fcbfffa1c03e160606f7dc /plugins/UFPWriter
parenta34ca45c38c3ae1cedb3aa8415688b02211b606c (diff)
Fix imports
Needs to be a capital letter now. Also remove the unused one (the kitty is no longer there). Contributes to issue CURA-4872.
Diffstat (limited to 'plugins/UFPWriter')
-rw-r--r--plugins/UFPWriter/UFPWriter.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/UFPWriter/UFPWriter.py b/plugins/UFPWriter/UFPWriter.py
index 4e7463735c..0f49a30403 100644
--- a/plugins/UFPWriter/UFPWriter.py
+++ b/plugins/UFPWriter/UFPWriter.py
@@ -1,10 +1,9 @@
#Copyright (c) 2018 Ultimaker B.V.
#Cura is released under the terms of the LGPLv3 or higher.
-from charon.VirtualFile import VirtualFile #To open UFP files.
-from charon.OpenMode import OpenMode #To indicate that we want to write to UFP files.
-from io import BytesIO, StringIO #For converting g-code to bytes.
-import os.path #To get the placeholder kitty icon.
+from Charon.VirtualFile import VirtualFile #To open UFP files.
+from Charon.OpenMode import OpenMode #To indicate that we want to write to UFP files.
+from io import StringIO #For converting g-code to bytes.
from UM.Application import Application
from UM.Logger import Logger