Skip to content

Commit e85579b

Browse files
authored
Merge pull request #10 from adi1998/patch-1
Change import order in texpacking to allow non-hull related command to succeed when scipy is not present
2 parents d3a2cf5 + abed92b commit e85579b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

deppth2/texpacking.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
import re
99

1010
try:
11-
import scipy.spatial
1211
import PyTexturePacker
1312
import PIL.Image
13+
import scipy.spatial
1414
except ImportError as e:
1515
print("These scripts requires the scipy, PyTexturePacker and pillow packages. Please install them with pip.")
1616

0 commit comments

Comments
 (0)