nutti / fake-bpy-module

Fake Blender Python API module collection for the code completion.
MIT License
1.3k stars 95 forks source link

Array of boolean consistency with array of int/float #268

Closed Road-hog123 closed 22 hours ago

Road-hog123 commented 1 week 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.

nutti commented 22 hours ago

Thank you @Road-hog123