nutti
nutti
@Road-hog123 > foreach_get and foreach_set are problematic because of multi-dimensional array flattening—probably best to open a separate issue for them specifically. No prob. You can also discuss this here. Before...
@Road-hog123 I think MutableSequence is now deprecated. Is it possible to use list instead?
@Road-hog123 @JonathanPlasse Could you give me an advice about this type annotation? Both `typing.Sequence[bool] | typing.Sequence[int] | typing.Sequence[float]` and `typing.Sequence[bool | int | float]` will be an error while executing...
> What is the error? I don't see why either of these would be incorrect type annotations. This is my mistake. I have already solved this. The issue is now...
@JonathanPlasse Tweaking each attribute is a bit costly for the generation. Is it possible to absorb the change in `mathutils.Vector` or `bpy.types.bpy_prop_array`?
@JonathanPlasse @Road-hog123 Thank you for diving into the solution! BTW, do you want to contribute this issue? Fortunately, this can be fixed by tweaking mod file. https://github.com/nutti/fake-bpy-module/blob/master/src/mods/common/analyzer/append/mathutils.mod.rst?plain=1 Perhaps, we may...
@JonathanPlasse Thanks. Sure, go ahead.
@JonathanPlasse I think Ruff does not all formatting rules of Pylint and Pycodestyle. To support Pylint and Pycodestyle users, lint test with multiple linter tool is prefer.
Actually, Pylint/pycodestyle is mainly used for checking the generation code under the `src` directory. We don't need to speed up the lint against these files [as you can see](https://github.com/nutti/fake-bpy-module/actions/runs/7356332768). But...
@JonathanPlasse Is there any update?