mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 15:37:27 -06:00
Added type ignore since it does accept it
This commit is contained in:
parent
8cc091fd0a
commit
82ffdccac2
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ class ShapeArray:
|
||||||
:return: numpy array with dimensions defined by shape
|
:return: numpy array with dimensions defined by shape
|
||||||
"""
|
"""
|
||||||
|
|
||||||
base_array = numpy.zeros(shape, dtype = numpy.int32) # Initialize your array of zeros
|
base_array = numpy.zeros(shape, dtype = numpy.int32) # type: ignore # Initialize your array of zeros
|
||||||
|
|
||||||
fill = numpy.ones(base_array.shape) * True # Initialize boolean array defining shape fill
|
fill = numpy.ones(base_array.shape) * True # Initialize boolean array defining shape fill
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue