Skip to content

Commit c695770

Browse files
committed
Non-relative imports
1 parent 24836e0 commit c695770

21 files changed

+21
-21
lines changed

test/test_catalog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from __future__ import print_function
22

33
import unittest
4-
from .pattern_for_tests import *
4+
from test.pattern_for_tests import *
55

66

77
class TestDataCatalog(unittest.TestCase):

test/test_color_fileformats.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import unittest
44

5-
from .pattern_for_tests import *
5+
from test.pattern_for_tests import *
66

77

88
class TestColorFormats(unittest.TestCase):

test/test_convert_csv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import unittest
44

5-
from .pattern_for_tests import *
5+
from test.pattern_for_tests import *
66

77

88
class TestConverts(unittest.TestCase):

test/test_convert_dst.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import unittest
44
from pyembroidery import *
5-
from .pattern_for_tests import *
5+
from test.pattern_for_tests import *
66

77

88
class TestConverts(unittest.TestCase):

test/test_convert_exp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import unittest
44

5-
from .pattern_for_tests import *
5+
from test.pattern_for_tests import *
66

77

88
class TestConverts(unittest.TestCase):

test/test_convert_gcode.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import unittest
44

5-
from .pattern_for_tests import *
5+
from test.pattern_for_tests import *
66

77

88
class TestConverts(unittest.TestCase):

test/test_convert_jef.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import unittest
44

5-
from .pattern_for_tests import *
5+
from test.pattern_for_tests import *
66

77

88
class TestConverts(unittest.TestCase):

test/test_convert_pec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import unittest
44

5-
from .pattern_for_tests import *
5+
from test.pattern_for_tests import *
66

77

88
class TestConverts(unittest.TestCase):

test/test_convert_pes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import unittest
44
from pyembroidery import *
5-
from .pattern_for_tests import *
5+
from test.pattern_for_tests import *
66

77

88
class TestConverts(unittest.TestCase):

test/test_convert_u01.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import unittest
44
from pyembroidery import *
5-
from .pattern_for_tests import *
5+
from test.pattern_for_tests import *
66

77
class TestConverts(unittest.TestCase):
88

0 commit comments

Comments
 (0)