Get rid of pyright ignore reportRedeclaration noise

Welp, it was helping to point out untyped props, but it is getting too noisy now.
This commit is contained in:
Andrej730
2026-04-10 17:55:06 +05:00
parent 51a338e4c8
commit 8eb0060d4a
32 changed files with 192 additions and 192 deletions
@@ -32,7 +32,7 @@ class SvIfcSbExtrude(bpy.types.Node, SverchCustomTreeNode, ifcsverchok.helper.Sv
bl_idname = "SvIfcSbExtrude"
bl_label = "IFC Extrude"
extrude_axis: bpy.props.EnumProperty( # pyright: ignore[reportRedeclaration]
extrude_axis: bpy.props.EnumProperty(
default="Z",
items=[
("X", "X", "Interpret curve as in XY plane and extrude along X+."),