@@ -110,7 +110,7 @@ def test_obj_simple_order(self):
110110 m = g .trimesh .load (file_name , process = False )
111111 # use trivial loading to compare with fancy performant one
112112 with open (file_name ) as f :
113- f , v , vt = simple_load (f .read ())
113+ f , v , _vt = simple_load (f .read ())
114114 # trimesh loader should return the same face order
115115 assert g .np .allclose (f , m .faces )
116116 assert g .np .allclose (v , m .vertices )
@@ -123,7 +123,7 @@ def test_order_tex(self):
123123 m = g .trimesh .load (file_name , process = False , maintain_order = True )
124124 # use trivial loading to compare with fancy performant one
125125 with open (file_name ) as f :
126- f , v , vt = simple_load (f .read ())
126+ f , v , _vt = simple_load (f .read ())
127127 # trimesh loader should return the same face order
128128 assert g .np .allclose (f , m .faces )
129129 assert g .np .allclose (v , m .vertices )
@@ -448,7 +448,7 @@ def test_export_normals(self):
448448 def test_export_mtl_args (self ):
449449 mesh = g .trimesh .creation .box ()
450450 # check for a crash with no materials defined
451- a , b = g .trimesh .exchange .obj .export_obj (
451+ _a , _b = g .trimesh .exchange .obj .export_obj (
452452 mesh , return_texture = True , mtl_name = "hi.mtl"
453453 )
454454
0 commit comments