You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "vertices" parameter of bpy.types.Mesh.from_pydata() was originally untyped, but in fake-bpy-module version 20250606, it received the type Iterable[Sequence[float]]. This is better than before, but it's not complete: it should be Iterable[Sequence[float] | Vector]. Right now, passing a list of Vectors (which works just fine at runtime) raises a type error.