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:
authorJaime van Kessel <nallath@gmail.com>2020-01-10 18:37:46 +0300
committerJaime van Kessel <nallath@gmail.com>2020-01-10 18:37:46 +0300
commite74f049142811d4ed5ce6406bc0075fd4f7c68ee (patch)
tree3671ccf6f11aa946a78c54a513b0884c692a41b2 /cura/LayerPolygon.py
parentbb52ba6848dd8319a5cf10bd5e2eaba994f159a5 (diff)
Fix bunch of issues found by pylint
Diffstat (limited to 'cura/LayerPolygon.py')
-rw-r--r--cura/LayerPolygon.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/cura/LayerPolygon.py b/cura/LayerPolygon.py
index 353d195100..6bdd0d53d1 100644
--- a/cura/LayerPolygon.py
+++ b/cura/LayerPolygon.py
@@ -1,10 +1,10 @@
# Copyright (c) 2019 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
-
-from UM.Qt.QtApplication import QtApplication
-from typing import Any, Optional
import numpy
+from typing import Optional
+
+from UM.Qt.QtApplication import QtApplication
from UM.Logger import Logger