fake-bpy-module 20250908__py3-none-any.whl → 20250909__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.

@@ -106,88 +106,6 @@ class GPENCIL_UL_annotation_layer(_bpy_types.UIList):
106
106
  :param _index:
107
107
  """
108
108
 
109
- class GPENCIL_UL_layer(_bpy_types.UIList):
110
- bl_rna: typing.Any
111
- id_data: typing.Any
112
-
113
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
114
- """
115
-
116
- :return: The RNA type or default when not found.
117
- :rtype: bpy.types.Struct
118
- """
119
-
120
- def bl_rna_get_subclass_py(self) -> typing.Any:
121
- """
122
-
123
- :return: The class or default when not found.
124
- :rtype: typing.Any
125
- """
126
-
127
- def draw_item(
128
- self,
129
- _context,
130
- layout,
131
- _data,
132
- item,
133
- _icon,
134
- _active_data,
135
- _active_propname,
136
- _index,
137
- ) -> None:
138
- """
139
-
140
- :param _context:
141
- :param layout:
142
- :param _data:
143
- :param item:
144
- :param _icon:
145
- :param _active_data:
146
- :param _active_propname:
147
- :param _index:
148
- """
149
-
150
- class GPENCIL_UL_masks(_bpy_types.UIList):
151
- bl_rna: typing.Any
152
- id_data: typing.Any
153
-
154
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
155
- """
156
-
157
- :return: The RNA type or default when not found.
158
- :rtype: bpy.types.Struct
159
- """
160
-
161
- def bl_rna_get_subclass_py(self) -> typing.Any:
162
- """
163
-
164
- :return: The class or default when not found.
165
- :rtype: typing.Any
166
- """
167
-
168
- def draw_item(
169
- self,
170
- _context,
171
- layout,
172
- _data,
173
- item,
174
- icon,
175
- _active_data,
176
- _active_propname,
177
- _index,
178
- ) -> None:
179
- """
180
-
181
- :param _context:
182
- :param layout:
183
- :param _data:
184
- :param item:
185
- :param icon:
186
- :param _active_data:
187
- :param _active_propname:
188
- :param _index:
189
- """
190
-
191
109
  class GREASE_PENCIL_MT_draw_delete(_bpy_types.Menu):
192
110
  bl_label: typing.Any
193
111
  bl_rna: typing.Any
@@ -371,69 +289,6 @@ class GreasePencilDisplayPanel:
371
289
  :param context:
372
290
  """
373
291
 
374
- class GreasePencilFlipTintColors(_bpy_types.Operator):
375
- """Switch tint colors"""
376
-
377
- bl_idname: typing.Any
378
- bl_label: typing.Any
379
- bl_rna: typing.Any
380
- id_data: typing.Any
381
-
382
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
383
- """
384
-
385
- :return: The RNA type or default when not found.
386
- :rtype: bpy.types.Struct
387
- """
388
-
389
- def bl_rna_get_subclass_py(self) -> typing.Any:
390
- """
391
-
392
- :return: The class or default when not found.
393
- :rtype: typing.Any
394
- """
395
-
396
- def execute(self, context) -> None:
397
- """
398
-
399
- :param context:
400
- """
401
-
402
- @classmethod
403
- def poll(cls, context) -> None:
404
- """
405
-
406
- :param context:
407
- """
408
-
409
- class GreasePencilLayerAdjustmentsPanel:
410
- def draw(self, context) -> None:
411
- """
412
-
413
- :param context:
414
- """
415
-
416
- class GreasePencilLayerDisplayPanel:
417
- def draw(self, context) -> None:
418
- """
419
-
420
- :param context:
421
- """
422
-
423
- class GreasePencilLayerRelationsPanel:
424
- def draw(self, context) -> None:
425
- """
426
-
427
- :param context:
428
- """
429
-
430
- class GreasePencilLayerTransformPanel:
431
- def draw(self, context) -> None:
432
- """
433
-
434
- :param context:
435
- """
436
-
437
292
  class GreasePencilMaterialsPanel:
438
293
  def draw(self, context) -> None:
439
294
  """
@@ -9,31 +9,6 @@ import bl_ui.utils
9
9
  import bpy.types
10
10
  import rna_prop_ui
11
11
 
12
- class GPENCIL_MT_material_context_menu(_bpy_types.Menu):
13
- bl_label: typing.Any
14
- bl_rna: typing.Any
15
- id_data: typing.Any
16
-
17
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
18
- """
19
-
20
- :return: The RNA type or default when not found.
21
- :rtype: bpy.types.Struct
22
- """
23
-
24
- def bl_rna_get_subclass_py(self) -> typing.Any:
25
- """
26
-
27
- :return: The class or default when not found.
28
- :rtype: typing.Any
29
- """
30
-
31
- def draw(self, _context) -> None:
32
- """
33
-
34
- :param _context:
35
- """
36
-
37
12
  class GPENCIL_UL_matslots(_bpy_types.UIList):
38
13
  bl_rna: typing.Any
39
14
  id_data: typing.Any
@@ -87,6 +62,31 @@ class GPMaterialButtonsPanel:
87
62
  :param context:
88
63
  """
89
64
 
65
+ class GREASE_PENCIL_MT_material_context_menu(_bpy_types.Menu):
66
+ bl_label: typing.Any
67
+ bl_rna: typing.Any
68
+ id_data: typing.Any
69
+
70
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
71
+ """
72
+
73
+ :return: The RNA type or default when not found.
74
+ :rtype: bpy.types.Struct
75
+ """
76
+
77
+ def bl_rna_get_subclass_py(self) -> typing.Any:
78
+ """
79
+
80
+ :return: The class or default when not found.
81
+ :rtype: typing.Any
82
+ """
83
+
84
+ def draw(self, _context) -> None:
85
+ """
86
+
87
+ :param _context:
88
+ """
89
+
90
90
  class MATERIAL_PT_gpencil_animation(
91
91
  rna_prop_ui.PropertyPanel,
92
92
  GPMaterialButtonsPanel,
@@ -855,16 +855,4 @@ class GreasePencilLayersDopeSheetPanel:
855
855
  :param context:
856
856
  """
857
857
 
858
- class LayersDopeSheetPanel:
859
- bl_category: typing.Any
860
- bl_region_type: typing.Any
861
- bl_space_type: typing.Any
862
-
863
- @classmethod
864
- def poll(cls, context) -> None:
865
- """
866
-
867
- :param context:
868
- """
869
-
870
858
  def dopesheet_filter(layout, context) -> None: ...
@@ -168,8 +168,6 @@ class _defs_edit_mesh:
168
168
  class _defs_edit_text:
169
169
  select_text: typing.Any
170
170
 
171
- class _defs_gpencil_weight: ...
172
-
173
171
  class _defs_grease_pencil_edit:
174
172
  interpolate: typing.Any
175
173
  pen: typing.Any
@@ -105,31 +105,6 @@ class VIEW3D_MT_brush_context_menu(_bpy_types.Menu):
105
105
  :param context:
106
106
  """
107
107
 
108
- class VIEW3D_MT_brush_gpencil_context_menu(_bpy_types.Menu):
109
- bl_label: typing.Any
110
- bl_rna: typing.Any
111
- id_data: typing.Any
112
-
113
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
114
- """
115
-
116
- :return: The RNA type or default when not found.
117
- :rtype: bpy.types.Struct
118
- """
119
-
120
- def bl_rna_get_subclass_py(self) -> typing.Any:
121
- """
122
-
123
- :return: The class or default when not found.
124
- :rtype: typing.Any
125
- """
126
-
127
- def draw(self, context) -> None:
128
- """
129
-
130
- :param context:
131
- """
132
-
133
108
  class VIEW3D_MT_tools_projectpaint_stencil(_bpy_types.Menu):
134
109
  bl_label: typing.Any
135
110
  bl_rna: typing.Any
@@ -159,14 +159,3 @@ def layer_annotation_remove(
159
159
  :type execution_context: int | str | None
160
160
  :type undo: bool | None
161
161
  """
162
-
163
- def tint_flip(
164
- execution_context: int | str | None = None,
165
- undo: bool | None = None,
166
- /,
167
- ) -> None:
168
- """Switch tint colors
169
-
170
- :type execution_context: int | str | None
171
- :type undo: bool | None
172
- """
bpy/ops/uv/__init__.pyi CHANGED
@@ -82,6 +82,74 @@ def align_rotation(
82
82
  :type correct_aspect: bool | None
83
83
  """
84
84
 
85
+ def arrange_islands(
86
+ execution_context: int | str | None = None,
87
+ undo: bool | None = None,
88
+ /,
89
+ *,
90
+ initial_position: typing.Literal["BOUNDING_BOX", "UV_GRID", "ACTIVE_UDIM", "CURSOR"]
91
+ | None = "BOUNDING_BOX",
92
+ axis: typing.Literal["X", "Y"] | None = "Y",
93
+ align: typing.Literal["MIN", "MAX", "CENTER", "NONE"] | None = "MIN",
94
+ order: typing.Literal["LARGE_TO_SMALL", "SMALL_TO_LARGE", "Fixed"]
95
+ | None = "LARGE_TO_SMALL",
96
+ margin: float | None = 0.05,
97
+ ) -> None:
98
+ """Arrange selected UV islands on a line
99
+
100
+ :type execution_context: int | str | None
101
+ :type undo: bool | None
102
+ :param initial_position: Initial Position, Initial position to arrange islands from
103
+
104
+ BOUNDING_BOX
105
+ Bounding Box -- Initial alignment based on the islands bounding box.
106
+
107
+ UV_GRID
108
+ UV Grid -- Initial alignment based on UV Tile Grid.
109
+
110
+ ACTIVE_UDIM
111
+ Active UDIM -- Initial alignment based on Active UDIM.
112
+
113
+ CURSOR
114
+ 2D Cursor -- Initial alignment based on 2D cursor.
115
+ :type initial_position: typing.Literal['BOUNDING_BOX','UV_GRID','ACTIVE_UDIM','CURSOR'] | None
116
+ :param axis: Axis, Axis to arrange UV islands on
117
+
118
+ X
119
+ X -- Align UV islands along the X axis.
120
+
121
+ Y
122
+ Y -- Align UV islands along the Y axis.
123
+ :type axis: typing.Literal['X','Y'] | None
124
+ :param align: Align, Location to align islands on
125
+
126
+ MIN
127
+ Min -- Align the islands to the min of the island.
128
+
129
+ MAX
130
+ Max -- Align the islands to the left side of the island.
131
+
132
+ CENTER
133
+ Center -- Align the islands to the center of the largest island.
134
+
135
+ NONE
136
+ None -- Preserve island alignment.
137
+ :type align: typing.Literal['MIN','MAX','CENTER','NONE'] | None
138
+ :param order: Order, Order of islands
139
+
140
+ LARGE_TO_SMALL
141
+ Largest to Smallest -- Sort Islands from Largest to Smallest.
142
+
143
+ SMALL_TO_LARGE
144
+ Smallest to Largest -- Sort Islands from Smallest to Largest.
145
+
146
+ Fixed
147
+ Fixed -- Preserve island order.
148
+ :type order: typing.Literal['LARGE_TO_SMALL','SMALL_TO_LARGE','Fixed'] | None
149
+ :param margin: Margin, Space between islands
150
+ :type margin: float | None
151
+ """
152
+
85
153
  def average_islands_scale(
86
154
  execution_context: int | str | None = None,
87
155
  undo: bool | None = None,
bpy/types/__init__.pyi CHANGED
@@ -32228,63 +32228,6 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
32228
32228
  :columns: 2
32229
32229
 
32230
32230
 
32231
- --------------------
32232
-
32233
- * bpy_struct.id_data
32234
- * UIList.bl_idname
32235
- * UIList.list_id
32236
- * UIList.layout_type
32237
- * UIList.use_filter_show
32238
- * UIList.filter_name
32239
- * UIList.use_filter_invert
32240
- * UIList.use_filter_sort_alpha
32241
- * UIList.use_filter_sort_reverse
32242
- * UIList.use_filter_sort_lock
32243
- * UIList.bitflag_filter_item
32244
- * UIList.bitflag_item_never_show
32245
-
32246
- :columns: 2
32247
-
32248
-
32249
- --------------------
32250
-
32251
- * bpy_struct.as_pointer
32252
- * bpy_struct.driver_add
32253
- * bpy_struct.driver_remove
32254
- * bpy_struct.get
32255
- * bpy_struct.id_properties_clear
32256
- * bpy_struct.id_properties_ensure
32257
- * bpy_struct.id_properties_ui
32258
- * bpy_struct.is_property_hidden
32259
- * bpy_struct.is_property_overridable_library
32260
- * bpy_struct.is_property_readonly
32261
- * bpy_struct.is_property_set
32262
- * bpy_struct.items
32263
- * bpy_struct.keyframe_delete
32264
- * bpy_struct.keyframe_insert
32265
- * bpy_struct.keys
32266
- * bpy_struct.path_from_id
32267
- * bpy_struct.path_resolve
32268
- * bpy_struct.pop
32269
- * bpy_struct.property_overridable_library_set
32270
- * bpy_struct.property_unset
32271
- * bpy_struct.rna_ancestors
32272
- * bpy_struct.type_recast
32273
- * bpy_struct.values
32274
- * UIList.bl_system_properties_get
32275
- * UIList.draw_item
32276
- * UIList.draw_filter
32277
- * UIList.filter_items
32278
- * UIList.append
32279
- * UIList.is_extended
32280
- * UIList.prepend
32281
- * UIList.remove
32282
- * UIList.bl_rna_get_subclass
32283
- * UIList.bl_rna_get_subclass_py
32284
-
32285
- :columns: 2
32286
-
32287
-
32288
32231
  --------------------
32289
32232
 
32290
32233
  * bpy_struct.id_data
@@ -34901,63 +34844,6 @@ from a search field, this can be done using bpy.types.Operator.invoke_search_pop
34901
34844
  :columns: 2
34902
34845
 
34903
34846
 
34904
- --------------------
34905
-
34906
- * bpy_struct.id_data
34907
- * UIList.bl_idname
34908
- * UIList.list_id
34909
- * UIList.layout_type
34910
- * UIList.use_filter_show
34911
- * UIList.filter_name
34912
- * UIList.use_filter_invert
34913
- * UIList.use_filter_sort_alpha
34914
- * UIList.use_filter_sort_reverse
34915
- * UIList.use_filter_sort_lock
34916
- * UIList.bitflag_filter_item
34917
- * UIList.bitflag_item_never_show
34918
-
34919
- :columns: 2
34920
-
34921
-
34922
- --------------------
34923
-
34924
- * bpy_struct.as_pointer
34925
- * bpy_struct.driver_add
34926
- * bpy_struct.driver_remove
34927
- * bpy_struct.get
34928
- * bpy_struct.id_properties_clear
34929
- * bpy_struct.id_properties_ensure
34930
- * bpy_struct.id_properties_ui
34931
- * bpy_struct.is_property_hidden
34932
- * bpy_struct.is_property_overridable_library
34933
- * bpy_struct.is_property_readonly
34934
- * bpy_struct.is_property_set
34935
- * bpy_struct.items
34936
- * bpy_struct.keyframe_delete
34937
- * bpy_struct.keyframe_insert
34938
- * bpy_struct.keys
34939
- * bpy_struct.path_from_id
34940
- * bpy_struct.path_resolve
34941
- * bpy_struct.pop
34942
- * bpy_struct.property_overridable_library_set
34943
- * bpy_struct.property_unset
34944
- * bpy_struct.rna_ancestors
34945
- * bpy_struct.type_recast
34946
- * bpy_struct.values
34947
- * UIList.bl_system_properties_get
34948
- * UIList.draw_item
34949
- * UIList.draw_filter
34950
- * UIList.filter_items
34951
- * UIList.append
34952
- * UIList.is_extended
34953
- * UIList.prepend
34954
- * UIList.remove
34955
- * UIList.bl_rna_get_subclass
34956
- * UIList.bl_rna_get_subclass_py
34957
-
34958
- :columns: 2
34959
-
34960
-
34961
34847
  --------------------
34962
34848
 
34963
34849
  * bpy_struct.id_data
@@ -38742,7 +38628,6 @@ of the scene and only show nodes of the renderer they are designed for.
38742
38628
  * Pose.apply_pose_from_action
38743
38629
  * Pose.backup_create
38744
38630
  * Pose.blend_pose_from_action
38745
- * SpaceDopeSheetEditor.action
38746
38631
  * WindowManager.poselib_previous_action
38747
38632
 
38748
38633
  :columns: 2
@@ -158777,118 +158662,6 @@ class GPENCIL_UL_annotation_layer(UIList, bpy_struct):
158777
158662
  :rtype: typing.Any
158778
158663
  """
158779
158664
 
158780
- class GPENCIL_UL_layer(UIList, bpy_struct):
158781
- def draw_item(
158782
- self,
158783
- _context,
158784
- layout,
158785
- _data,
158786
- item,
158787
- _icon,
158788
- _active_data,
158789
- _active_propname,
158790
- _index,
158791
- ) -> None:
158792
- """
158793
-
158794
- :param _context:
158795
- :param layout:
158796
- :param _data:
158797
- :param item:
158798
- :param _icon:
158799
- :param _active_data:
158800
- :param _active_propname:
158801
- :param _index:
158802
- """
158803
-
158804
- @classmethod
158805
- def bl_rna_get_subclass(
158806
- cls,
158807
- id: str | None,
158808
- default=None,
158809
- /,
158810
- ) -> Struct:
158811
- """
158812
-
158813
- :param id: The RNA type identifier.
158814
- :type id: str | None
158815
- :param default:
158816
- :return: The RNA type or default when not found.
158817
- :rtype: Struct
158818
- """
158819
-
158820
- @classmethod
158821
- def bl_rna_get_subclass_py(
158822
- cls,
158823
- id: str | None,
158824
- default=None,
158825
- /,
158826
- ) -> typing.Any:
158827
- """
158828
-
158829
- :param id: The RNA type identifier.
158830
- :type id: str | None
158831
- :param default:
158832
- :return: The class or default when not found.
158833
- :rtype: typing.Any
158834
- """
158835
-
158836
- class GPENCIL_UL_masks(UIList, bpy_struct):
158837
- def draw_item(
158838
- self,
158839
- _context,
158840
- layout,
158841
- _data,
158842
- item,
158843
- icon,
158844
- _active_data,
158845
- _active_propname,
158846
- _index,
158847
- ) -> None:
158848
- """
158849
-
158850
- :param _context:
158851
- :param layout:
158852
- :param _data:
158853
- :param item:
158854
- :param icon:
158855
- :param _active_data:
158856
- :param _active_propname:
158857
- :param _index:
158858
- """
158859
-
158860
- @classmethod
158861
- def bl_rna_get_subclass(
158862
- cls,
158863
- id: str | None,
158864
- default=None,
158865
- /,
158866
- ) -> Struct:
158867
- """
158868
-
158869
- :param id: The RNA type identifier.
158870
- :type id: str | None
158871
- :param default:
158872
- :return: The RNA type or default when not found.
158873
- :rtype: Struct
158874
- """
158875
-
158876
- @classmethod
158877
- def bl_rna_get_subclass_py(
158878
- cls,
158879
- id: str | None,
158880
- default=None,
158881
- /,
158882
- ) -> typing.Any:
158883
- """
158884
-
158885
- :param id: The RNA type identifier.
158886
- :type id: str | None
158887
- :param default:
158888
- :return: The class or default when not found.
158889
- :rtype: typing.Any
158890
- """
158891
-
158892
158665
  class GPENCIL_UL_matslots(UIList, bpy_struct):
158893
158666
  def draw_item(
158894
158667
  self,
@@ -234956,12 +234729,6 @@ class SpaceConsole(Space, bpy_struct):
234956
234729
  class SpaceDopeSheetEditor(Space, bpy_struct):
234957
234730
  """Dope Sheet space data"""
234958
234731
 
234959
- action: Action | None
234960
- """ Action displayed and edited in this space
234961
-
234962
- :type: Action | None
234963
- """
234964
-
234965
234732
  cache_cloth: bool
234966
234733
  """ Show the active object's cloth point cache
234967
234734
 
@@ -261864,14 +261631,8 @@ FILEBROWSER_UL_dir: bl_ui.space_filebrowser.FILEBROWSER_UL_dir
261864
261631
 
261865
261632
  FLUID_PT_presets: bl_ui.properties_physics_fluid.FLUID_PT_presets
261866
261633
 
261867
- GPENCIL_MT_material_context_menu: bl_ui.properties_material_gpencil.GPENCIL_MT_material_context_menu
261868
-
261869
261634
  GPENCIL_UL_annotation_layer: bl_ui.properties_grease_pencil_common.GPENCIL_UL_annotation_layer
261870
261635
 
261871
- GPENCIL_UL_layer: bl_ui.properties_grease_pencil_common.GPENCIL_UL_layer
261872
-
261873
- GPENCIL_UL_masks: bl_ui.properties_grease_pencil_common.GPENCIL_UL_masks
261874
-
261875
261636
  GPENCIL_UL_matslots: bl_ui.properties_material_gpencil.GPENCIL_UL_matslots
261876
261637
 
261877
261638
  GRAPH_HT_header: bl_ui.space_graph.GRAPH_HT_header
@@ -261930,6 +261691,8 @@ GREASE_PENCIL_MT_layer_active: bl_ui.properties_grease_pencil_common.GREASE_PENC
261930
261691
 
261931
261692
  GREASE_PENCIL_MT_layer_mask_add: bl_ui.properties_data_grease_pencil.GREASE_PENCIL_MT_layer_mask_add
261932
261693
 
261694
+ GREASE_PENCIL_MT_material_context_menu: bl_ui.properties_material_gpencil.GREASE_PENCIL_MT_material_context_menu
261695
+
261933
261696
  GREASE_PENCIL_MT_move_to_layer: bl_ui.properties_grease_pencil_common.GREASE_PENCIL_MT_move_to_layer
261934
261697
 
261935
261698
  GREASE_PENCIL_MT_snap: bl_ui.properties_grease_pencil_common.GREASE_PENCIL_MT_snap
@@ -263856,8 +263619,6 @@ VIEW3D_MT_bone_options_toggle: bl_ui.space_view3d.VIEW3D_MT_bone_options_toggle
263856
263619
 
263857
263620
  VIEW3D_MT_brush_context_menu: bl_ui.space_view3d_toolbar.VIEW3D_MT_brush_context_menu
263858
263621
 
263859
- VIEW3D_MT_brush_gpencil_context_menu: bl_ui.space_view3d_toolbar.VIEW3D_MT_brush_gpencil_context_menu
263860
-
263861
263622
  VIEW3D_MT_camera_add: bl_ui.space_view3d.VIEW3D_MT_camera_add
263862
263623
 
263863
263624
  VIEW3D_MT_curve_add: bl_ui.space_view3d.VIEW3D_MT_curve_add
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fake-bpy-module
3
- Version: 20250908
3
+ Version: 20250909
4
4
  Summary: Collection of the fake Blender Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -135,10 +135,10 @@ bl_ui/properties_data_shaderfx/__init__.pyi,sha256=21lgyjB0fDCQ7yytSMpVxZ4-6JidK
135
135
  bl_ui/properties_data_speaker/__init__.pyi,sha256=V2p1yDNBPxz3dKK6UiQBTO9Irh0fpe_r6bgovqDfnnk,4944
136
136
  bl_ui/properties_data_volume/__init__.pyi,sha256=Nttj9F30ICgk527SL09eTnRgr3Dp1KMOWPZhte7qX_o,7237
137
137
  bl_ui/properties_freestyle/__init__.pyi,sha256=6tanbUreqW57P58YM9sQv22bc2hiCabu2vwP1iq0L1U,23298
138
- bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=5WLHQw9KSPVaTlFCrN8YPk-GQBV3yd8MSLvgSIEaY1I,9158
138
+ bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=7Tjh_8KP6qvI0F_lb6Jn1IpV6hWuNtJ8kFilW_CEHd0,6279
139
139
  bl_ui/properties_mask_common/__init__.pyi,sha256=iwIe9TGaGoJynzyEyK3hiVpSgOFpNNX28BQ-RZEg6Wg,6292
140
140
  bl_ui/properties_material/__init__.pyi,sha256=umksBehoHZj_Jkn6xWX0WQH1sCwyqSpCA99ERYRQyz4,13075
141
- bl_ui/properties_material_gpencil/__init__.pyi,sha256=CMS8wtfYoLCKaN4RxYd3ikR23HLaIC2c_cvRHTNldgE,8738
141
+ bl_ui/properties_material_gpencil/__init__.pyi,sha256=MPq6SsAQKqz8jJbpcmGK6zF0cbAUKB2rcsG2TIoGDMo,8744
142
142
  bl_ui/properties_object/__init__.pyi,sha256=CzGxZhQxo1rcRb58UdawZd9xAXZ8OcoD_L9xb-jhPF8,15771
143
143
  bl_ui/properties_output/__init__.pyi,sha256=5GXVxRcb0hPK_VmFnkZy_PqohxLlPPBwwDYzhI6UUUk,15439
144
144
  bl_ui/properties_paint_common/__init__.pyi,sha256=av7mueFF2VWSj4OGRucFAa4YVXBwFaHNdQJoI1EDVIY,8428
@@ -160,7 +160,7 @@ bl_ui/properties_workspace/__init__.pyi,sha256=xUC1dYR6Eep5MbB1_-UTa77u4DE2bSH5s
160
160
  bl_ui/properties_world/__init__.pyi,sha256=CY-sQhTOWWkq1NOgQ9jYRn4V4GLKveXVQu4T92f8sRY,9341
161
161
  bl_ui/space_clip/__init__.pyi,sha256=y5bb9k6jgD_VHS020AKAOs_IL6sqNPCbqr0NAaUGYKo,47031
162
162
  bl_ui/space_console/__init__.pyi,sha256=b7zy0mFsO542Mtd_KyFh-NjG_YFb__4-bW_C9vlB-8g,3372
163
- bl_ui/space_dopesheet/__init__.pyi,sha256=5x17A8fHhT78tmDcBRM5Zlh3bXs8Do1Ur_2m-xYjHxs,19512
163
+ bl_ui/space_dopesheet/__init__.pyi,sha256=wqemfQF1iBORxWUB3c3gtz2lM91b-V0WV-sGwPObU2E,19291
164
164
  bl_ui/space_filebrowser/__init__.pyi,sha256=JwXlj3tu-WKX6IpHHa4dEitmPamqeu2LR_pbcpTJsPo,20637
165
165
  bl_ui/space_graph/__init__.pyi,sha256=TIljcrouLfS7ICU4fUZaRP5ybcUfd81xiOONIRGbyzE,12449
166
166
  bl_ui/space_image/__init__.pyi,sha256=umZnS9mizGdWOCO0EwXuDzB1zt-Qu5RPqJGOPftV88M,46869
@@ -175,11 +175,11 @@ bl_ui/space_statusbar/__init__.pyi,sha256=V-oUoxSsgIpi-jzqct_gz2vjFYkIqOffmuI4W7
175
175
  bl_ui/space_text/__init__.pyi,sha256=k864SRJgY7mgqqsu8KAhNGilMHMgMzjew1aeEHTtiYo,8996
176
176
  bl_ui/space_time/__init__.pyi,sha256=VwvieO14tuq0m-kYHJXz6maKEmQRAD7J2tQUrdNqI9E,4620
177
177
  bl_ui/space_toolsystem_common/__init__.pyi,sha256=0wapsLJDJuc7K6B5kjWvB9_dWN5e3_6WNWf_ZEChlmk,3436
178
- bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=dQwdOGNAgnkffHQ0H8OIoyMkvBldyI7aC_8e4oM-WJE,10781
178
+ bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=Bqr8yIDrb5u7M8vVl4ekwNPLTFk6xAusa6BwrKFqLtk,10748
179
179
  bl_ui/space_topbar/__init__.pyi,sha256=9MO703ewWr9Av2UGhd_tTQK8Okq8N3qw2SXOhZodeTk,15642
180
180
  bl_ui/space_userpref/__init__.pyi,sha256=u95zjkh77q4EWr3AfnZRjryl11SX_X9hQR-091164ck,81754
181
181
  bl_ui/space_view3d/__init__.pyi,sha256=sBby33ozbCunGLmCtaroL-zOGOzesPuAmQjmhkAOT8U,159488
182
- bl_ui/space_view3d_toolbar/__init__.pyi,sha256=vrk4yrWBpic1Pn3DxlsNLcFXXwy4RPKM_B0SwiihVV0,64988
182
+ bl_ui/space_view3d_toolbar/__init__.pyi,sha256=rMEa_DHJjDjbtQVtjDgc3Q0LdIdcwwKsp011UfdZos0,64437
183
183
  bl_ui/utils/__init__.pyi,sha256=ljnA9UEJuHjOECvmj0JrqHBYqtd8GGy7IaBhwV_pIns,534
184
184
  bl_ui_utils/__init__.pyi,sha256=6yinHCNictVwPqgqerb5zXorsqM0cqPLmz_r8ms1XeE,89
185
185
  bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -230,7 +230,7 @@ bpy/ops/fluid/__init__.pyi,sha256=HFXzyf1E4cnj3rM0WW1QYig3JyVbLXogsZWrRXHG_Us,35
230
230
  bpy/ops/font/__init__.pyi,sha256=nTI2Me4QkrxwDF6l5xYHAd4x1ndl0DnonUMzwAnsB1I,15624
231
231
  bpy/ops/geometry/__init__.pyi,sha256=6XA77z_tOSTs3MwmsEK1WI53E_61kURrxvYnHqYBTAI,7922
232
232
  bpy/ops/gizmogroup/__init__.pyi,sha256=fJ82n8AFYtAfDBQIZQ2J6hhM680Uk_71x6KO2lAa3Ck,1323
233
- bpy/ops/gpencil/__init__.pyi,sha256=kKqt8NtifAenrn2I9DPU0hs4MH-Cgb4ICLLZdhBj6jE,5005
233
+ bpy/ops/gpencil/__init__.pyi,sha256=FW-6wH7r93P3Ysc9rANroz3kaaSaQh6NQUSinrzWyiY,4784
234
234
  bpy/ops/graph/__init__.pyi,sha256=YNLtqDBmwwI5-nSoSdUJkBTMMa0_wjsSMYnvTrXzj2c,43175
235
235
  bpy/ops/grease_pencil/__init__.pyi,sha256=pCqO4T7foL3XIB8bKnMmAdeLkdGggNKHoKdsMu8djuM,69154
236
236
  bpy/ops/image/__init__.pyi,sha256=MrhR6AN9YCSQNdo2WeyxEjczERJF7YfCRqNdEReiwAA,50655
@@ -274,7 +274,7 @@ bpy/ops/texture/__init__.pyi,sha256=w1weHfSnhrJmGqpPs2KkjZNH4X8GDy-NFKfPXvy_rwQ,
274
274
  bpy/ops/transform/__init__.pyi,sha256=Xon_BEEVgLXk1u6wbaPg2YSfK4AaN4bPgPS4znfc3Kg,59679
275
275
  bpy/ops/ui/__init__.pyi,sha256=s_AC2AYmdkc3vPCCIeDVrS3zojkNuV8CTIRFjl56voo,13174
276
276
  bpy/ops/uilist/__init__.pyi,sha256=CSwrFuqez9Ia24-_yFa5gAudByRrRqmaQVKrfExyRYc,1669
277
- bpy/ops/uv/__init__.pyi,sha256=B5CBO2vL55Kqby1jm_7JOoQ72chuDGLMYWD4HkMHTUc,46532
277
+ bpy/ops/uv/__init__.pyi,sha256=FJg6pWCSxOug1TbusjLUclh7ylQhQ7v6JQoxLQs7tJE,48710
278
278
  bpy/ops/view2d/__init__.pyi,sha256=bXpaqKJa4WVVOib1-e_jWpSirho63ignV5z0LPxfLCs,7173
279
279
  bpy/ops/view3d/__init__.pyi,sha256=JET9fsqbX7Yqaf1IYsV2tvT4FwhYMklB_rOnEbG2OK8,31946
280
280
  bpy/ops/wm/__init__.pyi,sha256=1o58PXNIpKFQh_mzlZhgog191pDJB_10KHkBv2DWJtQ,210439
@@ -284,7 +284,7 @@ bpy/path/__init__.pyi,sha256=Phd8a6fB3496L7_LUhdwPNwkh3qy_4O-MS5br9RMfO0,5536
284
284
  bpy/props/__init__.pyi,sha256=NSOu8SY2_uXzyQ55AEuvhZGHY-4IZjDT3qqtszfLfwI,50980
285
285
  bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
286
286
  bpy/stub_internal/rna_enums/__init__.pyi,sha256=cccGqmWM38q4vdyIjUmKbaXWFJayGAyZJAq5EOdVZBc,143214
287
- bpy/types/__init__.pyi,sha256=jQ_tIO5GP6KXGhn_I9VxUrW33FS8x4t6nSICZ5Kpq08,5913692
287
+ bpy/types/__init__.pyi,sha256=gbmCHulqJMjlbmBSE5UXmRDjsUGRsAkrX7iedHQnwo0,5908544
288
288
  bpy/utils/__init__.pyi,sha256=GGYp2g381aOdE7tWXvRGVbmhijbfgt4wGAtJGgbvyJg,15526
289
289
  bpy/utils/previews/__init__.pyi,sha256=iSZemSCPu1S2BjAQO83Z-FqEo1nGHRCEIEduXB6hQhc,2357
290
290
  bpy/utils/units/__init__.pyi,sha256=cpE9IZPkYPBexru7R9HQ_c0931d7R7Dvib2Uf7V0JJs,2645
@@ -317,7 +317,7 @@ freestyle/functions/__init__.pyi,sha256=dGcOMrCayIE_OXrHIm36aQUAsCyNwvX63DjLjJw6
317
317
  freestyle/predicates/__init__.pyi,sha256=3Y8x157YP6udskhuFb_UZYvGyZjjEhGIJWQoj0BMLsw,13550
318
318
  freestyle/shaders/__init__.pyi,sha256=SUbnzfs9aX629SUz1vacJUkTQS2F8-E4TS1SetN0yFs,24630
319
319
  freestyle/types/__init__.pyi,sha256=LkVRkopB5Ntk0LeBeq4vnaVE-4CVtDcMVCKy75_sM9Y,101295
320
- freestyle/utils/__init__.pyi,sha256=vrxmLboZoETh1_GfhS4xYZ7vzW6Oh3vElX7y16Ftw0c,5328
320
+ freestyle/utils/__init__.pyi,sha256=I5thoI3sH_4ZEpx_7KK1Tl76DjREB7C-8g7A_IdQunQ,5328
321
321
  freestyle/utils/ContextFunctions/__init__.pyi,sha256=IKNZD__52vYS5eT32F_WZwW1dco_6G2kZC_1IVCAwLs,3486
322
322
  gpu/__init__.pyi,sha256=TLoatdrTMM6vfjnbuQA6cW38ARW5nuLa4Y-eicnJU5Q,8900
323
323
  gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -364,7 +364,7 @@ rna_prop_ui/__init__.pyi,sha256=Gn7kc9WhI3qPObIz8QiFbjeVIP7GCeF6liywBzIEcnE,1402
364
364
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
365
365
  rna_xml/__init__.pyi,sha256=E0_ajcifhpiiQJVaNKnAa2ju-w5Tg9-lk7IqhsPjrw4,652
366
366
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
367
- fake_bpy_module-20250908.dist-info/METADATA,sha256=xhdqW614lFfd4tEN-lMz3ty7Tn_1nz4PgEocfupCLCw,7429
368
- fake_bpy_module-20250908.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
369
- fake_bpy_module-20250908.dist-info/top_level.txt,sha256=E_sehFLnpWSq252JjlyGL1A-1xsWTYcqyOIlHfuOh28,515
370
- fake_bpy_module-20250908.dist-info/RECORD,,
367
+ fake_bpy_module-20250909.dist-info/METADATA,sha256=bPR-XLLF0aZU4hr3JeraxLRmMpbaT9M76jZWlcd3VRg,7429
368
+ fake_bpy_module-20250909.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
369
+ fake_bpy_module-20250909.dist-info/top_level.txt,sha256=E_sehFLnpWSq252JjlyGL1A-1xsWTYcqyOIlHfuOh28,515
370
+ fake_bpy_module-20250909.dist-info/RECORD,,
@@ -125,7 +125,7 @@ def material_from_fedge(fe) -> None:
125
125
  """get the diffuse RGBA color from an FEdge"""
126
126
 
127
127
  def normal_at_I0D(it) -> None: ...
128
- def pairwise(iterable, types={Stroke, StrokeVertexIterator}) -> None:
128
+ def pairwise(iterable, types={StrokeVertexIterator, Stroke}) -> None:
129
129
  """Yields a tuple containing the previous and current object"""
130
130
 
131
131
  def rgb_to_bw(r, g, b) -> None: