diff --git a/gcodeextractor/gcode/GcodeCreator.py b/gcodeextractor/gcode/GcodeCreator.py index fadab77..213ca60 100644 --- a/gcodeextractor/gcode/GcodeCreator.py +++ b/gcodeextractor/gcode/GcodeCreator.py @@ -1,4 +1,4 @@ -from gcodeextractor.models.Coordinates import Coordinate +from gcodeextractor.utils.Coordinates import Coordinate def findEndOfLine(image, direction, line, column, sequence): diff --git a/gcodeextractor/models/__init__.py b/gcodeextractor/models/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/gcodeextractor/tests/gcode/test_gcodeCreator.py b/gcodeextractor/tests/gcode/test_gcodeCreator.py index 1833add..2ea0eb8 100644 --- a/gcodeextractor/tests/gcode/test_gcodeCreator.py +++ b/gcodeextractor/tests/gcode/test_gcodeCreator.py @@ -1,7 +1,7 @@ from unittest import TestCase from gcodeextractor.gcode.GcodeCreator import createSequence, findDirection, findEndOfLine -from gcodeextractor.models.Coordinates import Coordinate +from gcodeextractor.utils.Coordinates import Coordinate class TestGcodeCreator(TestCase): diff --git a/gcodeextractor/tests/gcode/test_listToGcode.py b/gcodeextractor/tests/gcode/test_listToGcode.py index d0578b7..3941d77 100644 --- a/gcodeextractor/tests/gcode/test_listToGcode.py +++ b/gcodeextractor/tests/gcode/test_listToGcode.py @@ -1,7 +1,7 @@ from unittest import TestCase from gcodeextractor.gcode.GcodeBuilder import listToGCode -from gcodeextractor.models.Coordinates import Coordinate +from gcodeextractor.utils.Coordinates import Coordinate class TestListToGCode(TestCase): diff --git a/gcodeextractor/models/Coordinates.py b/gcodeextractor/utils/Coordinates.py similarity index 100% rename from gcodeextractor/models/Coordinates.py rename to gcodeextractor/utils/Coordinates.py