We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bb3998 commit 787c66eCopy full SHA for 787c66e
solid/test/test_solidpython.py
@@ -262,7 +262,7 @@ def test_include(self):
262
include_file = self.expand_scad_path("examples/scad_to_include.scad")
263
self.assertIsNotNone(include_file, 'examples/scad_to_include.scad not found')
264
include(include_file)
265
- a = steps(3)
+ a = steps(3) # type: ignore
266
267
actual = scad_render(a)
268
abs_path = a._get_include_path(include_file)
@@ -434,7 +434,7 @@ def test_scad_render_to_file(self):
434
435
def test_numpy_type(self):
436
try:
437
- import numpy
+ import numpy # type: ignore
438
numpy_cube = cube(size=numpy.array([1, 2, 3]))
439
expected = '\n\ncube(size = [1,2,3]);'
440
actual = scad_render(numpy_cube)
0 commit comments