Skip to content

Commit 787c66e

Browse files
committed
type:ignore stragglers
1 parent 9bb3998 commit 787c66e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

solid/test/test_solidpython.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def test_include(self):
262262
include_file = self.expand_scad_path("examples/scad_to_include.scad")
263263
self.assertIsNotNone(include_file, 'examples/scad_to_include.scad not found')
264264
include(include_file)
265-
a = steps(3)
265+
a = steps(3) # type: ignore
266266

267267
actual = scad_render(a)
268268
abs_path = a._get_include_path(include_file)
@@ -434,7 +434,7 @@ def test_scad_render_to_file(self):
434434

435435
def test_numpy_type(self):
436436
try:
437-
import numpy
437+
import numpy # type: ignore
438438
numpy_cube = cube(size=numpy.array([1, 2, 3]))
439439
expected = '\n\ncube(size = [1,2,3]);'
440440
actual = scad_render(numpy_cube)

0 commit comments

Comments
 (0)