Remove unused import

The deep copy is no longer needed. Also updated copyright year.

Contributes to issue CURA-1278.
This commit is contained in:
Ghostkeeper 2016-05-24 02:26:02 +02:00
parent 59b8d5c169
commit 673f63cf51
No known key found for this signature in database
GPG key ID: 701948C5954A7385

View file

@ -1,11 +1,10 @@
# Copyright (c) 2015 Ultimaker B.V. # Copyright (c) 2016 Ultimaker B.V.
# Cura is released under the terms of the AGPLv3 or higher. # Cura is released under the terms of the AGPLv3 or higher.
from UM.Mesh.MeshWriter import MeshWriter from UM.Mesh.MeshWriter import MeshWriter
from UM.Logger import Logger from UM.Logger import Logger
from UM.Application import Application from UM.Application import Application
import re #For escaping characters in the settings. import re #For escaping characters in the settings.
import copy
class GCodeWriter(MeshWriter): class GCodeWriter(MeshWriter):