Refactoring of namespace

This commit is contained in:
Jaime van Kessel 2014-12-15 10:44:23 +01:00
parent ad33effbbe
commit 59767ec560
4 changed files with 6 additions and 6 deletions

View file

@ -1,5 +1,5 @@
from Cura.Backend.Command import Command from UM.Backend.Command import Command
from Cura.plugins.CuraBackendEngine.Commands.TransferVertCommand import TransferVertCommand from UM.plugins.CuraBackendEngine.Commands.TransferVertCommand import TransferVertCommand
class TransferMeshCommand(Command): class TransferMeshCommand(Command):
def __init__(self): def __init__(self):

View file

@ -1,5 +1,5 @@
from Cura.Backend.Command import Command from UM.Backend.Command import Command
from Cura.plugins.CuraBackendEngine.Commands.TransferMeshCommand import TransferMeshCommand from UM.plugins.CuraBackendEngine.Commands.TransferMeshCommand import TransferMeshCommand
class TransferMeshesCommand(Command): class TransferMeshesCommand(Command):
def __init__(self): def __init__(self):

View file

@ -1,4 +1,4 @@
from Cura.Backend.Command import Command from UM.Backend.Command import Command
class TransferVerticeListCommand(Command): class TransferVerticeListCommand(Command):
def __init__(self): def __init__(self):

View file

@ -1,4 +1,4 @@
from Cura.Backend.Backend import Backend from UM.Backend.Backend import Backend
class CuraEngineBackend(Backend): class CuraEngineBackend(Backend):
def __init__(self): def __init__(self):