nutti / fake-bpy-module

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

Update: Improve bpy_prop_array typing #240

Closed JonathanPlasse closed 4 months ago

JonathanPlasse commented 4 months ago

Purpose of the pull request

Description about the pull request

__get__ returns bpy_prop_array[GenericType1] which has the same behavior as currently. __set__ can receive any Iterable[GenericType1] like any other function arguments that have bpy_prop_array as expected type.

nutti commented 4 months ago

Thank you @JonathanPlasse !