Closed Road-hog123 closed 4 months ago
boolean array of n items was being typed as list[bool], which was then incompatible with tuple default values, and was inconsistent with int/float array of n items which is typed as Iterable or bpy_prop_array depending on the application.
boolean array of n items
list[bool]
tuple
int/float array of n items
Iterable
bpy_prop_array
Thank you @Road-hog123
boolean array of n items
was being typed aslist[bool]
, which was then incompatible withtuple
default values, and was inconsistent withint/float array of n items
which is typed asIterable
orbpy_prop_array
depending on the application.