fake-bpy-module 20250926__py3-none-any.whl → 20250928__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bl_operators/node/__init__.pyi +0 -9
- bl_ui/node_add_menu/__init__.pyi +16 -15
- bl_ui/node_add_menu_compositor/__init__.pyi +17 -17
- bl_ui/node_add_menu_geometry/__init__.pyi +56 -56
- bl_ui/node_add_menu_shader/__init__.pyi +10 -10
- bl_ui/node_add_menu_texture/__init__.pyi +1 -1
- bl_ui/properties_render/__init__.pyi +31 -0
- bl_ui/space_node/__init__.pyi +2 -2
- bpy/ops/action/__init__.pyi +3 -0
- bpy/ops/file/__init__.pyi +3 -0
- bpy/ops/graph/__init__.pyi +3 -0
- bpy/ops/marker/__init__.pyi +3 -0
- bpy/ops/nla/__init__.pyi +3 -0
- bpy/ops/node/__init__.pyi +206 -0
- bpy/ops/sequencer/__init__.pyi +6 -0
- bpy/ops/ui/__init__.pyi +12 -0
- bpy/stub_internal/rna_enums/__init__.pyi +2 -0
- bpy/types/__init__.pyi +635 -30
- {fake_bpy_module-20250926.dist-info → fake_bpy_module-20250928.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250926.dist-info → fake_bpy_module-20250928.dist-info}/RECORD +23 -23
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20250926.dist-info → fake_bpy_module-20250928.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20250926.dist-info → fake_bpy_module-20250928.dist-info}/top_level.txt +0 -0
bl_operators/node/__init__.pyi
CHANGED
|
@@ -45,7 +45,6 @@ class NODE_OT_add_closure_zone(NodeAddZoneOperator, _bpy_types.Operator):
|
|
|
45
45
|
id_data: typing.Any
|
|
46
46
|
input_node_type: typing.Any
|
|
47
47
|
output_node_type: typing.Any
|
|
48
|
-
zone_tooltips: typing.Any
|
|
49
48
|
|
|
50
49
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
51
50
|
"""
|
|
@@ -117,7 +116,6 @@ class NODE_OT_add_foreach_geometry_element_zone(
|
|
|
117
116
|
id_data: typing.Any
|
|
118
117
|
input_node_type: typing.Any
|
|
119
118
|
output_node_type: typing.Any
|
|
120
|
-
zone_tooltips: typing.Any
|
|
121
119
|
|
|
122
120
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
123
121
|
"""
|
|
@@ -173,7 +171,6 @@ class NODE_OT_add_repeat_zone(NodeAddZoneOperator, _bpy_types.Operator):
|
|
|
173
171
|
id_data: typing.Any
|
|
174
172
|
input_node_type: typing.Any
|
|
175
173
|
output_node_type: typing.Any
|
|
176
|
-
zone_tooltips: typing.Any
|
|
177
174
|
|
|
178
175
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
179
176
|
"""
|
|
@@ -200,7 +197,6 @@ class NODE_OT_add_simulation_zone(NodeAddZoneOperator, _bpy_types.Operator):
|
|
|
200
197
|
id_data: typing.Any
|
|
201
198
|
input_node_type: typing.Any
|
|
202
199
|
output_node_type: typing.Any
|
|
203
|
-
zone_tooltips: typing.Any
|
|
204
200
|
|
|
205
201
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
206
202
|
"""
|
|
@@ -223,7 +219,6 @@ class NODE_OT_add_zone(NodeAddZoneOperator, _bpy_types.Operator):
|
|
|
223
219
|
bl_options: typing.Any
|
|
224
220
|
bl_rna: typing.Any
|
|
225
221
|
id_data: typing.Any
|
|
226
|
-
zone_tooltips: typing.Any
|
|
227
222
|
|
|
228
223
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
229
224
|
"""
|
|
@@ -548,7 +543,6 @@ class NODE_OT_swap_zone(NodeSwapOperator, ZoneOperator, _bpy_types.Operator):
|
|
|
548
543
|
bl_rna: typing.Any
|
|
549
544
|
id_data: typing.Any
|
|
550
545
|
properties_to_pass: typing.Any
|
|
551
|
-
zone_tooltips: typing.Any
|
|
552
546
|
|
|
553
547
|
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
554
548
|
"""
|
|
@@ -748,8 +742,6 @@ class NodeSetting(_bpy_types.PropertyGroup):
|
|
|
748
742
|
"""
|
|
749
743
|
|
|
750
744
|
class ZoneOperator:
|
|
751
|
-
zone_tooltips: typing.Any
|
|
752
|
-
|
|
753
745
|
@classmethod
|
|
754
746
|
def description(cls, _context, properties) -> None:
|
|
755
747
|
"""
|
|
@@ -833,7 +825,6 @@ class NodeSwapOperator(NodeOperator):
|
|
|
833
825
|
|
|
834
826
|
class NodeAddZoneOperator(ZoneOperator, NodeAddOperator):
|
|
835
827
|
add_default_geometry_link: typing.Any
|
|
836
|
-
zone_tooltips: typing.Any
|
|
837
828
|
|
|
838
829
|
def execute(self, context) -> None:
|
|
839
830
|
"""
|
bl_ui/node_add_menu/__init__.pyi
CHANGED
|
@@ -6,7 +6,7 @@ import _bpy_types
|
|
|
6
6
|
import bpy.types
|
|
7
7
|
|
|
8
8
|
class NodeMenu(_bpy_types.Menu):
|
|
9
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
9
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
10
10
|
|
|
11
11
|
bl_rna: typing.Any
|
|
12
12
|
id_data: typing.Any
|
|
@@ -35,7 +35,7 @@ class NodeMenu(_bpy_types.Menu):
|
|
|
35
35
|
|
|
36
36
|
@classmethod
|
|
37
37
|
def color_mix_node(cls, context, layout) -> None:
|
|
38
|
-
"""The Mix Color node, with its different blend modes available while in search
|
|
38
|
+
"""The Mix Color node, with its different blend modes available while in search.
|
|
39
39
|
|
|
40
40
|
:param context:
|
|
41
41
|
:param layout:
|
|
@@ -43,7 +43,7 @@ class NodeMenu(_bpy_types.Menu):
|
|
|
43
43
|
|
|
44
44
|
@classmethod
|
|
45
45
|
def draw_group_menu(cls, context, layout) -> None:
|
|
46
|
-
"""Show operators used for interacting with node groups
|
|
46
|
+
"""Show operators used for interacting with node groups.
|
|
47
47
|
|
|
48
48
|
:param context:
|
|
49
49
|
:param layout:
|
|
@@ -51,10 +51,11 @@ class NodeMenu(_bpy_types.Menu):
|
|
|
51
51
|
|
|
52
52
|
@classmethod
|
|
53
53
|
def draw_menu(cls, layout, path) -> None:
|
|
54
|
-
"""Takes the given menu path and draws the corresponding menu.
|
|
54
|
+
"""Takes the given menu path and draws the corresponding menu.
|
|
55
|
+
Menu paths are either explicitly defined, or based on bl_label if not.
|
|
55
56
|
|
|
56
|
-
|
|
57
|
-
|
|
57
|
+
:param layout:
|
|
58
|
+
:param path:
|
|
58
59
|
"""
|
|
59
60
|
|
|
60
61
|
@classmethod
|
|
@@ -74,7 +75,7 @@ class NodeMenu(_bpy_types.Menu):
|
|
|
74
75
|
|
|
75
76
|
@classmethod
|
|
76
77
|
def new_empty_group(cls, layout) -> None:
|
|
77
|
-
"""Group Node with a newly created empty group as its assigned nodetree
|
|
78
|
+
"""Group Node with a newly created empty group as its assigned nodetree.
|
|
78
79
|
|
|
79
80
|
:param layout:
|
|
80
81
|
"""
|
|
@@ -90,7 +91,7 @@ class NodeMenu(_bpy_types.Menu):
|
|
|
90
91
|
search_weight=0.0,
|
|
91
92
|
translate=True,
|
|
92
93
|
) -> None:
|
|
93
|
-
"""The main operator defined for the node menu.(e.g. Add Node for AddNodeMenu, or Swap Node for SwapNodeMenu)
|
|
94
|
+
"""The main operator defined for the node menu.(e.g. Add Node for AddNodeMenu, or Swap Node for SwapNodeMenu).
|
|
94
95
|
|
|
95
96
|
:param layout:
|
|
96
97
|
:param node_type:
|
|
@@ -104,7 +105,7 @@ class NodeMenu(_bpy_types.Menu):
|
|
|
104
105
|
def node_operator_with_outputs(
|
|
105
106
|
cls, context, layout, node_type, subnames, *, label=None, search_weight=0.0
|
|
106
107
|
) -> None:
|
|
107
|
-
"""Similar to node_operator, but with extra entries based on a enum socket while in search
|
|
108
|
+
"""Similar to node_operator, but with extra entries based on a enum socket while in search.
|
|
108
109
|
|
|
109
110
|
:param context:
|
|
110
111
|
:param layout:
|
|
@@ -118,7 +119,7 @@ class NodeMenu(_bpy_types.Menu):
|
|
|
118
119
|
def node_operator_with_searchable_enum(
|
|
119
120
|
cls, context, layout, node_idname, property_name, search_weight=0.0
|
|
120
121
|
) -> None:
|
|
121
|
-
"""Similar to node_operator, but with extra entries based on a enum property while in search
|
|
122
|
+
"""Similar to node_operator, but with extra entries based on a enum property while in search.
|
|
122
123
|
|
|
123
124
|
:param context:
|
|
124
125
|
:param layout:
|
|
@@ -137,7 +138,7 @@ class NodeMenu(_bpy_types.Menu):
|
|
|
137
138
|
enum_names,
|
|
138
139
|
search_weight=0.0,
|
|
139
140
|
) -> None:
|
|
140
|
-
"""Similar to node_operator, but with extra entries based on a enum socket while in search
|
|
141
|
+
"""Similar to node_operator, but with extra entries based on a enum socket while in search.
|
|
141
142
|
|
|
142
143
|
:param context:
|
|
143
144
|
:param layout:
|
|
@@ -164,7 +165,7 @@ class NodeMenu(_bpy_types.Menu):
|
|
|
164
165
|
"""
|
|
165
166
|
|
|
166
167
|
class AddNodeMenu(NodeMenu):
|
|
167
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
168
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
168
169
|
|
|
169
170
|
bl_rna: typing.Any
|
|
170
171
|
draw_assets: typing.Any
|
|
@@ -198,7 +199,7 @@ class AddNodeMenu(NodeMenu):
|
|
|
198
199
|
"""
|
|
199
200
|
|
|
200
201
|
class NODE_MT_group_base(NodeMenu):
|
|
201
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
202
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
202
203
|
|
|
203
204
|
bl_label: typing.Any
|
|
204
205
|
bl_rna: typing.Any
|
|
@@ -225,7 +226,7 @@ class NODE_MT_group_base(NodeMenu):
|
|
|
225
226
|
"""
|
|
226
227
|
|
|
227
228
|
class NODE_MT_layout_base(NodeMenu):
|
|
228
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
229
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
229
230
|
|
|
230
231
|
bl_label: typing.Any
|
|
231
232
|
bl_rna: typing.Any
|
|
@@ -252,7 +253,7 @@ class NODE_MT_layout_base(NodeMenu):
|
|
|
252
253
|
"""
|
|
253
254
|
|
|
254
255
|
class SwapNodeMenu(NodeMenu):
|
|
255
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
256
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
256
257
|
|
|
257
258
|
bl_rna: typing.Any
|
|
258
259
|
draw_assets: typing.Any
|
|
@@ -6,7 +6,7 @@ import bl_ui.node_add_menu
|
|
|
6
6
|
import bpy.types
|
|
7
7
|
|
|
8
8
|
class NODE_MT_compositor_node_all_base(bl_ui.node_add_menu.NodeMenu):
|
|
9
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
9
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
10
10
|
|
|
11
11
|
bl_label: typing.Any
|
|
12
12
|
bl_rna: typing.Any
|
|
@@ -35,7 +35,7 @@ class NODE_MT_compositor_node_all_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
35
35
|
"""
|
|
36
36
|
|
|
37
37
|
class NODE_MT_compositor_node_color_adjust_base(bl_ui.node_add_menu.NodeMenu):
|
|
38
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
38
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
39
39
|
|
|
40
40
|
bl_label: typing.Any
|
|
41
41
|
bl_rna: typing.Any
|
|
@@ -63,7 +63,7 @@ class NODE_MT_compositor_node_color_adjust_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
63
63
|
"""
|
|
64
64
|
|
|
65
65
|
class NODE_MT_compositor_node_color_base(bl_ui.node_add_menu.NodeMenu):
|
|
66
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
66
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
67
67
|
|
|
68
68
|
bl_label: typing.Any
|
|
69
69
|
bl_rna: typing.Any
|
|
@@ -90,7 +90,7 @@ class NODE_MT_compositor_node_color_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
90
90
|
"""
|
|
91
91
|
|
|
92
92
|
class NODE_MT_compositor_node_color_mix_base(bl_ui.node_add_menu.NodeMenu):
|
|
93
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
93
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
94
94
|
|
|
95
95
|
bl_label: typing.Any
|
|
96
96
|
bl_rna: typing.Any
|
|
@@ -118,7 +118,7 @@ class NODE_MT_compositor_node_color_mix_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
118
118
|
"""
|
|
119
119
|
|
|
120
120
|
class NODE_MT_compositor_node_filter_base(bl_ui.node_add_menu.NodeMenu):
|
|
121
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
121
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
122
122
|
|
|
123
123
|
bl_label: typing.Any
|
|
124
124
|
bl_rna: typing.Any
|
|
@@ -145,7 +145,7 @@ class NODE_MT_compositor_node_filter_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
145
145
|
"""
|
|
146
146
|
|
|
147
147
|
class NODE_MT_compositor_node_filter_blur_base(bl_ui.node_add_menu.NodeMenu):
|
|
148
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
148
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
149
149
|
|
|
150
150
|
bl_label: typing.Any
|
|
151
151
|
bl_rna: typing.Any
|
|
@@ -173,7 +173,7 @@ class NODE_MT_compositor_node_filter_blur_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
173
173
|
"""
|
|
174
174
|
|
|
175
175
|
class NODE_MT_compositor_node_input_base(bl_ui.node_add_menu.NodeMenu):
|
|
176
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
176
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
177
177
|
|
|
178
178
|
bl_label: typing.Any
|
|
179
179
|
bl_rna: typing.Any
|
|
@@ -200,7 +200,7 @@ class NODE_MT_compositor_node_input_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
200
200
|
"""
|
|
201
201
|
|
|
202
202
|
class NODE_MT_compositor_node_input_constant_base(bl_ui.node_add_menu.NodeMenu):
|
|
203
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
203
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
204
204
|
|
|
205
205
|
bl_label: typing.Any
|
|
206
206
|
bl_rna: typing.Any
|
|
@@ -228,7 +228,7 @@ class NODE_MT_compositor_node_input_constant_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
228
228
|
"""
|
|
229
229
|
|
|
230
230
|
class NODE_MT_compositor_node_input_scene_base(bl_ui.node_add_menu.NodeMenu):
|
|
231
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
231
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
232
232
|
|
|
233
233
|
bl_label: typing.Any
|
|
234
234
|
bl_rna: typing.Any
|
|
@@ -256,7 +256,7 @@ class NODE_MT_compositor_node_input_scene_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
256
256
|
"""
|
|
257
257
|
|
|
258
258
|
class NODE_MT_compositor_node_keying_base(bl_ui.node_add_menu.NodeMenu):
|
|
259
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
259
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
260
260
|
|
|
261
261
|
bl_label: typing.Any
|
|
262
262
|
bl_rna: typing.Any
|
|
@@ -283,7 +283,7 @@ class NODE_MT_compositor_node_keying_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
283
283
|
"""
|
|
284
284
|
|
|
285
285
|
class NODE_MT_compositor_node_mask_base(bl_ui.node_add_menu.NodeMenu):
|
|
286
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
286
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
287
287
|
|
|
288
288
|
bl_label: typing.Any
|
|
289
289
|
bl_rna: typing.Any
|
|
@@ -310,7 +310,7 @@ class NODE_MT_compositor_node_mask_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
310
310
|
"""
|
|
311
311
|
|
|
312
312
|
class NODE_MT_compositor_node_output_base(bl_ui.node_add_menu.NodeMenu):
|
|
313
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
313
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
314
314
|
|
|
315
315
|
bl_label: typing.Any
|
|
316
316
|
bl_rna: typing.Any
|
|
@@ -337,7 +337,7 @@ class NODE_MT_compositor_node_output_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
337
337
|
"""
|
|
338
338
|
|
|
339
339
|
class NODE_MT_compositor_node_texture_base(bl_ui.node_add_menu.NodeMenu):
|
|
340
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
340
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
341
341
|
|
|
342
342
|
bl_label: typing.Any
|
|
343
343
|
bl_rna: typing.Any
|
|
@@ -364,7 +364,7 @@ class NODE_MT_compositor_node_texture_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
364
364
|
"""
|
|
365
365
|
|
|
366
366
|
class NODE_MT_compositor_node_tracking_base(bl_ui.node_add_menu.NodeMenu):
|
|
367
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
367
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
368
368
|
|
|
369
369
|
bl_label: typing.Any
|
|
370
370
|
bl_rna: typing.Any
|
|
@@ -392,7 +392,7 @@ class NODE_MT_compositor_node_tracking_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
392
392
|
"""
|
|
393
393
|
|
|
394
394
|
class NODE_MT_compositor_node_transform_base(bl_ui.node_add_menu.NodeMenu):
|
|
395
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
395
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
396
396
|
|
|
397
397
|
bl_label: typing.Any
|
|
398
398
|
bl_rna: typing.Any
|
|
@@ -419,7 +419,7 @@ class NODE_MT_compositor_node_transform_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
419
419
|
"""
|
|
420
420
|
|
|
421
421
|
class NODE_MT_compositor_node_utilities_base(bl_ui.node_add_menu.NodeMenu):
|
|
422
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
422
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
423
423
|
|
|
424
424
|
bl_label: typing.Any
|
|
425
425
|
bl_rna: typing.Any
|
|
@@ -446,7 +446,7 @@ class NODE_MT_compositor_node_utilities_base(bl_ui.node_add_menu.NodeMenu):
|
|
|
446
446
|
"""
|
|
447
447
|
|
|
448
448
|
class NODE_MT_compositor_node_vector_base(bl_ui.node_add_menu.NodeMenu):
|
|
449
|
-
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu"""
|
|
449
|
+
"""A baseclass defining the shared methods for AddNodeMenu and SwapNodeMenu."""
|
|
450
450
|
|
|
451
451
|
bl_label: typing.Any
|
|
452
452
|
bl_rna: typing.Any
|