nutti / fake-bpy-module

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

set() converted to None() #244

Closed Road-hog123 closed 1 month ago

Road-hog123 commented 1 month ago

override and tags parameters of functions in bpy.props (except RemoveProperty) default to set() and are typed set in the RST, however in the generated module they default to None() (None is not callable) and are typed set | None.

This is also true for bpy_struct.keyframe_insert()'s options parameter, although it is presently untyped in the RST due to a typo: #122734 - PyAPI Doc: fix typos causing untyped parameters.

nutti commented 1 month ago

This is now fixed.