nutti / fake-bpy-module

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

Default values that are instances of classes are typed as calls to None #267

Open Road-hog123 opened 1 week ago

Road-hog123 commented 1 week ago

Possibly related to #244

Various functions in bmesh.ops have parameters that default to instances of mathutils classes e.g. bisect_plane's plane_co and plane_no which default to mathutils.Vector() and create_circle's matrix which defaults to mathutils.Matrix.Identity(4), but these get converted to None() and None(4) respectively.