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

bpy/types/__init__.pyi CHANGED
@@ -8302,7 +8302,6 @@
8302
8302
 
8303
8303
  * bpy.context.active_annotation_layer
8304
8304
  * bpy.context.active_gpencil_layer
8305
- * bpy.context.editable_gpencil_layers
8306
8305
  * bpy.context.visible_gpencil_layers
8307
8306
  * GreasePencil.layers
8308
8307
  * GreasePencilLayers.new
@@ -27790,7 +27789,6 @@ Property types used in class declarations are all in bpy.props
27790
27789
 
27791
27790
  --------------------
27792
27791
 
27793
- * bpy.context.editable_gpencil_strokes
27794
27792
  * GPencilFrame.strokes
27795
27793
 
27796
27794
  :columns: 2
@@ -54762,56 +54760,6 @@ print(positions_data)
54762
54760
  :columns: 2
54763
54761
 
54764
54762
 
54765
- --------------------
54766
-
54767
- * bpy_struct.id_data
54768
- * AssetShelf.bl_idname
54769
- * AssetShelf.bl_space_type
54770
- * AssetShelf.bl_options
54771
- * AssetShelf.bl_activate_operator
54772
- * AssetShelf.bl_default_preview_size
54773
- * AssetShelf.asset_library_reference
54774
- * AssetShelf.show_names
54775
- * AssetShelf.preview_size
54776
- * AssetShelf.search_filter
54777
-
54778
- :columns: 2
54779
-
54780
-
54781
- --------------------
54782
-
54783
- * bpy_struct.as_pointer
54784
- * bpy_struct.driver_add
54785
- * bpy_struct.driver_remove
54786
- * bpy_struct.get
54787
- * bpy_struct.id_properties_clear
54788
- * bpy_struct.id_properties_ensure
54789
- * bpy_struct.id_properties_ui
54790
- * bpy_struct.is_property_hidden
54791
- * bpy_struct.is_property_overridable_library
54792
- * bpy_struct.is_property_readonly
54793
- * bpy_struct.is_property_set
54794
- * bpy_struct.items
54795
- * bpy_struct.keyframe_delete
54796
- * bpy_struct.keyframe_insert
54797
- * bpy_struct.keys
54798
- * bpy_struct.path_from_id
54799
- * bpy_struct.path_resolve
54800
- * bpy_struct.pop
54801
- * bpy_struct.property_overridable_library_set
54802
- * bpy_struct.property_unset
54803
- * bpy_struct.type_recast
54804
- * bpy_struct.values
54805
- * AssetShelf.poll
54806
- * AssetShelf.asset_poll
54807
- * AssetShelf.get_active_asset
54808
- * AssetShelf.draw_context_menu
54809
- * AssetShelf.bl_rna_get_subclass
54810
- * AssetShelf.bl_rna_get_subclass_py
54811
-
54812
- :columns: 2
54813
-
54814
-
54815
54763
  --------------------
54816
54764
 
54817
54765
  * bpy_struct.id_data
@@ -130974,18 +130922,6 @@ class Context(bpy_struct):
130974
130922
  :type: list[MovieTrackingTrack]
130975
130923
  """
130976
130924
 
130977
- gpencil_data: GreasePencil | None
130978
- """
130979
-
130980
- :type: GreasePencil | None
130981
- """
130982
-
130983
- gpencil_data_owner: ID | None
130984
- """
130985
-
130986
- :type: ID | None
130987
- """
130988
-
130989
130925
  annotation_data: GreasePencil | None
130990
130926
  """
130991
130927
 
@@ -130998,36 +130934,6 @@ class Context(bpy_struct):
130998
130934
  :type: ID | None
130999
130935
  """
131000
130936
 
131001
- visible_gpencil_layers: list[GPencilLayer]
131002
- """
131003
-
131004
- :type: list[GPencilLayer]
131005
- """
131006
-
131007
- editable_gpencil_layers: list[GPencilLayer]
131008
- """
131009
-
131010
- :type: list[GPencilLayer]
131011
- """
131012
-
131013
- editable_gpencil_strokes: list[GPencilStroke]
131014
- """
131015
-
131016
- :type: list[GPencilStroke]
131017
- """
131018
-
131019
- active_gpencil_layer: list[GPencilLayer] | None
131020
- """
131021
-
131022
- :type: list[GPencilLayer] | None
131023
- """
131024
-
131025
- active_gpencil_frame: list[GreasePencilLayer] | None
131026
- """
131027
-
131028
- :type: list[GreasePencilLayer] | None
131029
- """
131030
-
131031
130937
  active_annotation_layer: GPencilLayer | None
131032
130938
  """
131033
130939
 
@@ -213213,14 +213119,20 @@ class TextLine(bpy_struct):
213213
213119
  class TextSequence(EffectSequence, Sequence, bpy_struct):
213214
213120
  """Sequence strip creating text"""
213215
213121
 
213216
- align_x: typing.Literal["LEFT", "CENTER", "RIGHT"]
213217
- """ Align the text along the X axis, relative to the text bounds
213122
+ alignment_x: typing.Literal["LEFT", "CENTER", "RIGHT"]
213123
+ """ Horizontal text alignment
213218
213124
 
213219
213125
  :type: typing.Literal['LEFT','CENTER','RIGHT']
213220
213126
  """
213221
213127
 
213222
- align_y: typing.Literal["TOP", "CENTER", "BOTTOM"]
213223
- """ Align the text along the Y axis, relative to the text bounds
213128
+ anchor_x: typing.Literal["LEFT", "CENTER", "RIGHT"]
213129
+ """ Horizontal position of the text box relative to Location
213130
+
213131
+ :type: typing.Literal['LEFT','CENTER','RIGHT']
213132
+ """
213133
+
213134
+ anchor_y: typing.Literal["TOP", "CENTER", "BOTTOM"]
213135
+ """ Vertical position of the text box relative to Location
213224
213136
 
213225
213137
  :type: typing.Literal['TOP','CENTER','BOTTOM']
213226
213138
  """
@@ -224442,62 +224354,6 @@ class VIEW3D_AST_brush_gpencil_weight(AssetShelf, bpy_struct):
224442
224354
  :rtype: typing.Any
224443
224355
  """
224444
224356
 
224445
- class VIEW3D_AST_brush_grease_pencil_paint(AssetShelf, bpy_struct):
224446
- @classmethod
224447
- def brush_type_poll(cls, context, asset):
224448
- """
224449
-
224450
- :param context:
224451
- :param asset:
224452
- """
224453
-
224454
- @staticmethod
224455
- def draw_popup_selector(layout, context, brush, show_name=True):
224456
- """
224457
-
224458
- :param layout:
224459
- :param context:
224460
- :param brush:
224461
- :param show_name:
224462
- """
224463
-
224464
- @staticmethod
224465
- def get_shelf_name_from_context(context):
224466
- """
224467
-
224468
- :param context:
224469
- """
224470
-
224471
- @classmethod
224472
- def has_tool_with_brush_type(cls, context, brush_type):
224473
- """
224474
-
224475
- :param context:
224476
- :param brush_type:
224477
- """
224478
-
224479
- @classmethod
224480
- def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
224481
- """
224482
-
224483
- :param id: The RNA type identifier.
224484
- :type id: str | None
224485
- :param default:
224486
- :return: The RNA type or default when not found.
224487
- :rtype: Struct
224488
- """
224489
-
224490
- @classmethod
224491
- def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
224492
- """
224493
-
224494
- :param id: The RNA type identifier.
224495
- :type id: str | None
224496
- :param default:
224497
- :return: The class or default when not found.
224498
- :rtype: typing.Any
224499
- """
224500
-
224501
224357
  class VIEW3D_AST_brush_sculpt(AssetShelf, bpy_struct):
224502
224358
  @classmethod
224503
224359
  def brush_type_poll(cls, context, asset):
@@ -231176,18 +231032,6 @@ DATA_PT_gpencil_canvas: bl_ui.properties_data_gpencil.DATA_PT_gpencil_canvas
231176
231032
 
231177
231033
  DATA_PT_gpencil_display: bl_ui.properties_data_gpencil.DATA_PT_gpencil_display
231178
231034
 
231179
- DATA_PT_gpencil_layer_adjustments: bl_ui.properties_data_gpencil.DATA_PT_gpencil_layer_adjustments
231180
-
231181
- DATA_PT_gpencil_layer_display: bl_ui.properties_data_gpencil.DATA_PT_gpencil_layer_display
231182
-
231183
- DATA_PT_gpencil_layer_masks: bl_ui.properties_data_gpencil.DATA_PT_gpencil_layer_masks
231184
-
231185
- DATA_PT_gpencil_layer_relations: bl_ui.properties_data_gpencil.DATA_PT_gpencil_layer_relations
231186
-
231187
- DATA_PT_gpencil_layer_transform: bl_ui.properties_data_gpencil.DATA_PT_gpencil_layer_transform
231188
-
231189
- DATA_PT_gpencil_layers: bl_ui.properties_data_gpencil.DATA_PT_gpencil_layers
231190
-
231191
231035
  DATA_PT_gpencil_modifiers: bl_ui.properties_data_modifier.DATA_PT_gpencil_modifiers
231192
231036
 
231193
231037
  DATA_PT_gpencil_onion_skinning: bl_ui.properties_data_gpencil.DATA_PT_gpencil_onion_skinning
@@ -231198,8 +231042,6 @@ DATA_PT_gpencil_onion_skinning_display: bl_ui.properties_data_gpencil.DATA_PT_gp
231198
231042
 
231199
231043
  DATA_PT_gpencil_strokes: bl_ui.properties_data_gpencil.DATA_PT_gpencil_strokes
231200
231044
 
231201
- DATA_PT_gpencil_vertex_groups: bl_ui.properties_data_gpencil.DATA_PT_gpencil_vertex_groups
231202
-
231203
231045
  DATA_PT_grease_pencil_animation: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_animation
231204
231046
 
231205
231047
  DATA_PT_grease_pencil_attributes: bl_ui.properties_data_grease_pencil.DATA_PT_grease_pencil_attributes
@@ -231348,8 +231190,6 @@ DOPESHEET_MT_editor_menus: bl_ui.space_dopesheet.DOPESHEET_MT_editor_menus
231348
231190
 
231349
231191
  DOPESHEET_MT_gpencil_channel: bl_ui.space_dopesheet.DOPESHEET_MT_gpencil_channel
231350
231192
 
231351
- DOPESHEET_MT_gpencil_key: bl_ui.space_dopesheet.DOPESHEET_MT_gpencil_key
231352
-
231353
231193
  DOPESHEET_MT_key: bl_ui.space_dopesheet.DOPESHEET_MT_key
231354
231194
 
231355
231195
  DOPESHEET_MT_key_transform: bl_ui.space_dopesheet.DOPESHEET_MT_key_transform
@@ -231372,18 +231212,6 @@ DOPESHEET_PT_custom_props_action: bl_ui.space_dopesheet.DOPESHEET_PT_custom_prop
231372
231212
 
231373
231213
  DOPESHEET_PT_filters: bl_ui.space_dopesheet.DOPESHEET_PT_filters
231374
231214
 
231375
- DOPESHEET_PT_gpencil_layer_adjustments: bl_ui.space_dopesheet.DOPESHEET_PT_gpencil_layer_adjustments
231376
-
231377
- DOPESHEET_PT_gpencil_layer_display: bl_ui.space_dopesheet.DOPESHEET_PT_gpencil_layer_display
231378
-
231379
- DOPESHEET_PT_gpencil_layer_masks: bl_ui.space_dopesheet.DOPESHEET_PT_gpencil_layer_masks
231380
-
231381
- DOPESHEET_PT_gpencil_layer_relations: bl_ui.space_dopesheet.DOPESHEET_PT_gpencil_layer_relations
231382
-
231383
- DOPESHEET_PT_gpencil_layer_transform: bl_ui.space_dopesheet.DOPESHEET_PT_gpencil_layer_transform
231384
-
231385
- DOPESHEET_PT_gpencil_mode: bl_ui.space_dopesheet.DOPESHEET_PT_gpencil_mode
231386
-
231387
231215
  DOPESHEET_PT_grease_pencil_layer_masks: bl_ui.space_dopesheet.DOPESHEET_PT_grease_pencil_layer_masks
231388
231216
 
231389
231217
  DOPESHEET_PT_grease_pencil_layer_relations: bl_ui.space_dopesheet.DOPESHEET_PT_grease_pencil_layer_relations
@@ -231466,28 +231294,8 @@ FILEBROWSER_UL_dir: bl_ui.space_filebrowser.FILEBROWSER_UL_dir
231466
231294
 
231467
231295
  FLUID_PT_presets: bl_ui.properties_physics_fluid.FLUID_PT_presets
231468
231296
 
231469
- GPENCIL_MT_cleanup: bl_ui.properties_grease_pencil_common.GPENCIL_MT_cleanup
231470
-
231471
- GPENCIL_MT_gpencil_draw_delete: bl_ui.properties_grease_pencil_common.GPENCIL_MT_gpencil_draw_delete
231472
-
231473
- GPENCIL_MT_gpencil_vertex_group: bl_ui.properties_data_gpencil.GPENCIL_MT_gpencil_vertex_group
231474
-
231475
- GPENCIL_MT_layer_active: bl_ui.properties_grease_pencil_common.GPENCIL_MT_layer_active
231476
-
231477
- GPENCIL_MT_layer_context_menu: bl_ui.properties_data_gpencil.GPENCIL_MT_layer_context_menu
231478
-
231479
- GPENCIL_MT_layer_mask_menu: bl_ui.properties_grease_pencil_common.GPENCIL_MT_layer_mask_menu
231480
-
231481
- GPENCIL_MT_material_active: bl_ui.properties_grease_pencil_common.GPENCIL_MT_material_active
231482
-
231483
231297
  GPENCIL_MT_material_context_menu: bl_ui.properties_material_gpencil.GPENCIL_MT_material_context_menu
231484
231298
 
231485
- GPENCIL_MT_move_to_layer: bl_ui.properties_grease_pencil_common.GPENCIL_MT_move_to_layer
231486
-
231487
- GPENCIL_MT_snap: bl_ui.properties_grease_pencil_common.GPENCIL_MT_snap
231488
-
231489
- GPENCIL_MT_snap_pie: bl_ui.properties_grease_pencil_common.GPENCIL_MT_snap_pie
231490
-
231491
231299
  GPENCIL_UL_annotation_layer: bl_ui.properties_grease_pencil_common.GPENCIL_UL_annotation_layer
231492
231300
 
231493
231301
  GPENCIL_UL_layer: bl_ui.properties_grease_pencil_common.GPENCIL_UL_layer
@@ -233162,16 +232970,12 @@ TOPBAR_MT_workspace_menu: bl_ui.space_topbar.TOPBAR_MT_workspace_menu
233162
232970
 
233163
232971
  TOPBAR_PT_annotation_layers: bl_ui.space_view3d.TOPBAR_PT_annotation_layers
233164
232972
 
233165
- TOPBAR_PT_gpencil_layers: bl_ui.space_topbar.TOPBAR_PT_gpencil_layers
233166
-
233167
- TOPBAR_PT_gpencil_materials: bl_ui.space_view3d.TOPBAR_PT_gpencil_materials
233168
-
233169
232973
  TOPBAR_PT_gpencil_primitive: bl_ui.space_topbar.TOPBAR_PT_gpencil_primitive
233170
232974
 
233171
- TOPBAR_PT_gpencil_vertexcolor: bl_ui.space_view3d.TOPBAR_PT_gpencil_vertexcolor
233172
-
233173
232975
  TOPBAR_PT_grease_pencil_layers: bl_ui.space_topbar.TOPBAR_PT_grease_pencil_layers
233174
232976
 
232977
+ TOPBAR_PT_grease_pencil_materials: bl_ui.space_view3d.TOPBAR_PT_grease_pencil_materials
232978
+
233175
232979
  TOPBAR_PT_grease_pencil_vertex_color: bl_ui.space_view3d.TOPBAR_PT_grease_pencil_vertex_color
233176
232980
 
233177
232981
  TOPBAR_PT_name: bl_ui.space_topbar.TOPBAR_PT_name
@@ -233386,8 +233190,6 @@ VIEW3D_AST_brush_gpencil_vertex: bl_ui.space_view3d.VIEW3D_AST_brush_gpencil_ver
233386
233190
 
233387
233191
  VIEW3D_AST_brush_gpencil_weight: bl_ui.space_view3d.VIEW3D_AST_brush_gpencil_weight
233388
233192
 
233389
- VIEW3D_AST_brush_grease_pencil_paint: bl_ui.space_view3d.VIEW3D_AST_brush_grease_pencil_paint
233390
-
233391
233193
  VIEW3D_AST_brush_sculpt: bl_ui.space_view3d.VIEW3D_AST_brush_sculpt
233392
233194
 
233393
233195
  VIEW3D_AST_brush_sculpt_curves: bl_ui.space_view3d.VIEW3D_AST_brush_sculpt_curves
@@ -233414,8 +233216,6 @@ VIEW3D_MT_armature_add: bl_ui.space_view3d.VIEW3D_MT_armature_add
233414
233216
 
233415
233217
  VIEW3D_MT_armature_context_menu: bl_ui.space_view3d.VIEW3D_MT_armature_context_menu
233416
233218
 
233417
- VIEW3D_MT_assign_material: bl_ui.space_view3d.VIEW3D_MT_assign_material
233418
-
233419
233219
  VIEW3D_MT_bone_collections: bl_ui.space_view3d.VIEW3D_MT_bone_collections
233420
233220
 
233421
233221
  VIEW3D_MT_bone_options_disable: bl_ui.space_view3d.VIEW3D_MT_bone_options_disable
@@ -233432,8 +233232,6 @@ VIEW3D_MT_camera_add: bl_ui.space_view3d.VIEW3D_MT_camera_add
233432
233232
 
233433
233233
  VIEW3D_MT_curve_add: bl_ui.space_view3d.VIEW3D_MT_curve_add
233434
233234
 
233435
- VIEW3D_MT_draw_gpencil: bl_ui.space_view3d.VIEW3D_MT_draw_gpencil
233436
-
233437
233235
  VIEW3D_MT_edit_armature: bl_ui.space_view3d.VIEW3D_MT_edit_armature
233438
233236
 
233439
233237
  VIEW3D_MT_edit_armature_delete: bl_ui.space_view3d.VIEW3D_MT_edit_armature_delete
@@ -233480,18 +233278,6 @@ VIEW3D_MT_edit_font_delete: bl_ui.space_view3d.VIEW3D_MT_edit_font_delete
233480
233278
 
233481
233279
  VIEW3D_MT_edit_font_kerning: bl_ui.space_view3d.VIEW3D_MT_edit_font_kerning
233482
233280
 
233483
- VIEW3D_MT_edit_gpencil: bl_ui.space_view3d.VIEW3D_MT_edit_gpencil
233484
-
233485
- VIEW3D_MT_edit_gpencil_delete: bl_ui.space_view3d.VIEW3D_MT_edit_gpencil_delete
233486
-
233487
- VIEW3D_MT_edit_gpencil_point: bl_ui.space_view3d.VIEW3D_MT_edit_gpencil_point
233488
-
233489
- VIEW3D_MT_edit_gpencil_showhide: bl_ui.space_view3d.VIEW3D_MT_edit_gpencil_showhide
233490
-
233491
- VIEW3D_MT_edit_gpencil_stroke: bl_ui.space_view3d.VIEW3D_MT_edit_gpencil_stroke
233492
-
233493
- VIEW3D_MT_edit_gpencil_transform: bl_ui.space_view3d.VIEW3D_MT_edit_gpencil_transform
233494
-
233495
233281
  VIEW3D_MT_edit_greasepencil: bl_ui.space_view3d.VIEW3D_MT_edit_greasepencil
233496
233282
 
233497
233283
  VIEW3D_MT_edit_greasepencil_animation: bl_ui.space_view3d.VIEW3D_MT_edit_greasepencil_animation
@@ -233574,16 +233360,6 @@ VIEW3D_MT_face_sets: bl_ui.space_view3d.VIEW3D_MT_face_sets
233574
233360
 
233575
233361
  VIEW3D_MT_face_sets_init: bl_ui.space_view3d.VIEW3D_MT_face_sets_init
233576
233362
 
233577
- VIEW3D_MT_gpencil_animation: bl_ui.space_view3d.VIEW3D_MT_gpencil_animation
233578
-
233579
- VIEW3D_MT_gpencil_autoweights: bl_ui.space_view3d.VIEW3D_MT_gpencil_autoweights
233580
-
233581
- VIEW3D_MT_gpencil_edit_context_menu: bl_ui.space_view3d.VIEW3D_MT_gpencil_edit_context_menu
233582
-
233583
- VIEW3D_MT_gpencil_simplify: bl_ui.space_view3d.VIEW3D_MT_gpencil_simplify
233584
-
233585
- VIEW3D_MT_gpencil_vertex_group: bl_ui.space_view3d.VIEW3D_MT_gpencil_vertex_group
233586
-
233587
233363
  VIEW3D_MT_grease_pencil_add: bl_ui.space_view3d.VIEW3D_MT_grease_pencil_add
233588
233364
 
233589
233365
  VIEW3D_MT_grease_pencil_assign_material: bl_ui.space_view3d.VIEW3D_MT_grease_pencil_assign_material
@@ -233656,8 +233432,6 @@ VIEW3D_MT_object_track: bl_ui.space_view3d.VIEW3D_MT_object_track
233656
233432
 
233657
233433
  VIEW3D_MT_orientations_pie: bl_ui.space_view3d.VIEW3D_MT_orientations_pie
233658
233434
 
233659
- VIEW3D_MT_paint_gpencil: bl_ui.space_view3d.VIEW3D_MT_paint_gpencil
233660
-
233661
233435
  VIEW3D_MT_paint_grease_pencil: bl_ui.space_view3d.VIEW3D_MT_paint_grease_pencil
233662
233436
 
233663
233437
  VIEW3D_MT_paint_vertex: bl_ui.space_view3d.VIEW3D_MT_paint_vertex
@@ -233710,8 +233484,6 @@ VIEW3D_MT_sculpt_curves: bl_ui.space_view3d.VIEW3D_MT_sculpt_curves
233710
233484
 
233711
233485
  VIEW3D_MT_sculpt_face_sets_edit_pie: bl_ui.space_view3d.VIEW3D_MT_sculpt_face_sets_edit_pie
233712
233486
 
233713
- VIEW3D_MT_sculpt_gpencil_automasking_pie: bl_ui.space_view3d.VIEW3D_MT_sculpt_gpencil_automasking_pie
233714
-
233715
233487
  VIEW3D_MT_sculpt_mask_edit_pie: bl_ui.space_view3d.VIEW3D_MT_sculpt_mask_edit_pie
233716
233488
 
233717
233489
  VIEW3D_MT_sculpt_set_pivot: bl_ui.space_view3d.VIEW3D_MT_sculpt_set_pivot
@@ -233728,8 +233500,6 @@ VIEW3D_MT_select_edit_curve: bl_ui.space_view3d.VIEW3D_MT_select_edit_curve
233728
233500
 
233729
233501
  VIEW3D_MT_select_edit_curves: bl_ui.space_view3d.VIEW3D_MT_select_edit_curves
233730
233502
 
233731
- VIEW3D_MT_select_edit_gpencil: bl_ui.space_view3d.VIEW3D_MT_select_edit_gpencil
233732
-
233733
233503
  VIEW3D_MT_select_edit_grease_pencil: bl_ui.space_view3d.VIEW3D_MT_select_edit_grease_pencil
233734
233504
 
233735
233505
  VIEW3D_MT_select_edit_lattice: bl_ui.space_view3d.VIEW3D_MT_select_edit_lattice
@@ -233808,8 +233578,6 @@ VIEW3D_MT_view_viewpoint: bl_ui.space_view3d.VIEW3D_MT_view_viewpoint
233808
233578
 
233809
233579
  VIEW3D_MT_volume_add: bl_ui.space_view3d.VIEW3D_MT_volume_add
233810
233580
 
233811
- VIEW3D_MT_weight_gpencil: bl_ui.space_view3d.VIEW3D_MT_weight_gpencil
233812
-
233813
233581
  VIEW3D_MT_weight_grease_pencil: bl_ui.space_view3d.VIEW3D_MT_weight_grease_pencil
233814
233582
 
233815
233583
  VIEW3D_MT_wpaint_vgroup_lock_pie: bl_ui.space_view3d.VIEW3D_MT_wpaint_vgroup_lock_pie
@@ -233846,29 +233614,17 @@ VIEW3D_PT_gizmo_display: bl_ui.space_view3d.VIEW3D_PT_gizmo_display
233846
233614
 
233847
233615
  VIEW3D_PT_gpencil_brush_presets: bl_ui.space_view3d_toolbar.VIEW3D_PT_gpencil_brush_presets
233848
233616
 
233849
- VIEW3D_PT_gpencil_curve_edit: bl_ui.space_view3d.VIEW3D_PT_gpencil_curve_edit
233850
-
233851
- VIEW3D_PT_gpencil_draw_context_menu: bl_ui.space_view3d.VIEW3D_PT_gpencil_draw_context_menu
233852
-
233853
- VIEW3D_PT_gpencil_guide: bl_ui.space_view3d.VIEW3D_PT_gpencil_guide
233854
-
233855
- VIEW3D_PT_gpencil_lock: bl_ui.space_view3d.VIEW3D_PT_gpencil_lock
233856
-
233857
- VIEW3D_PT_gpencil_multi_frame: bl_ui.space_view3d.VIEW3D_PT_gpencil_multi_frame
233858
-
233859
- VIEW3D_PT_gpencil_origin: bl_ui.space_view3d.VIEW3D_PT_gpencil_origin
233860
-
233861
- VIEW3D_PT_gpencil_sculpt_automasking: bl_ui.space_view3d.VIEW3D_PT_gpencil_sculpt_automasking
233617
+ VIEW3D_PT_grease_pencil: bl_ui.space_view3d.VIEW3D_PT_grease_pencil
233862
233618
 
233863
- VIEW3D_PT_gpencil_sculpt_context_menu: bl_ui.space_view3d.VIEW3D_PT_gpencil_sculpt_context_menu
233619
+ VIEW3D_PT_grease_pencil_guide: bl_ui.space_view3d.VIEW3D_PT_grease_pencil_guide
233864
233620
 
233865
- VIEW3D_PT_gpencil_vertex_context_menu: bl_ui.space_view3d.VIEW3D_PT_gpencil_vertex_context_menu
233621
+ VIEW3D_PT_grease_pencil_lock: bl_ui.space_view3d.VIEW3D_PT_grease_pencil_lock
233866
233622
 
233867
- VIEW3D_PT_gpencil_weight_context_menu: bl_ui.space_view3d.VIEW3D_PT_gpencil_weight_context_menu
233623
+ VIEW3D_PT_grease_pencil_multi_frame: bl_ui.space_view3d.VIEW3D_PT_grease_pencil_multi_frame
233868
233624
 
233869
- VIEW3D_PT_grease_pencil: bl_ui.space_view3d.VIEW3D_PT_grease_pencil
233625
+ VIEW3D_PT_grease_pencil_origin: bl_ui.space_view3d.VIEW3D_PT_grease_pencil_origin
233870
233626
 
233871
- VIEW3D_PT_grease_pencil_multi_frame: bl_ui.space_view3d.VIEW3D_PT_grease_pencil_multi_frame
233627
+ VIEW3D_PT_grease_pencil_sculpt_automasking: bl_ui.space_view3d.VIEW3D_PT_grease_pencil_sculpt_automasking
233872
233628
 
233873
233629
  VIEW3D_PT_greasepencil_draw_context_menu: bl_ui.space_view3d.VIEW3D_PT_greasepencil_draw_context_menu
233874
233630
 
@@ -233900,8 +233656,6 @@ VIEW3D_PT_overlay_edit_mesh_shading: bl_ui.space_view3d.VIEW3D_PT_overlay_edit_m
233900
233656
 
233901
233657
  VIEW3D_PT_overlay_geometry: bl_ui.space_view3d.VIEW3D_PT_overlay_geometry
233902
233658
 
233903
- VIEW3D_PT_overlay_gpencil_options: bl_ui.space_view3d.VIEW3D_PT_overlay_gpencil_options
233904
-
233905
233659
  VIEW3D_PT_overlay_grease_pencil_canvas_options: bl_ui.space_view3d.VIEW3D_PT_overlay_grease_pencil_canvas_options
233906
233660
 
233907
233661
  VIEW3D_PT_overlay_grease_pencil_options: bl_ui.space_view3d.VIEW3D_PT_overlay_grease_pencil_options
bpy/typing/__init__.pyi CHANGED
@@ -2262,10 +2262,10 @@ type ObjectModeItems = typing.Literal[
2262
2262
  "TEXTURE_PAINT", # Texture Paint.
2263
2263
  "PARTICLE_EDIT", # Particle Edit.
2264
2264
  "EDIT_GPENCIL", # Edit Mode.Edit Grease Pencil Strokes.
2265
- "SCULPT_GPENCIL", # Sculpt Mode.Sculpt Grease Pencil Strokes.
2266
- "PAINT_GPENCIL", # Draw Mode.Paint Grease Pencil Strokes.
2267
- "WEIGHT_GPENCIL", # Weight Paint.Grease Pencil Weight Paint Strokes.
2268
- "VERTEX_GPENCIL", # Vertex Paint.Grease Pencil Vertex Paint Strokes.
2265
+ "SCULPT_GREASE_PENCIL", # Sculpt Mode.Sculpt Grease Pencil Strokes.
2266
+ "PAINT_GREASE_PENCIL", # Draw Mode.Paint Grease Pencil Strokes.
2267
+ "WEIGHT_GREASE_PENCIL", # Weight Paint.Grease Pencil Weight Paint Strokes.
2268
+ "VERTEX_GREASE_PENCIL", # Vertex Paint.Grease Pencil Vertex Paint Strokes.
2269
2269
  "SCULPT_CURVES", # Sculpt Mode.
2270
2270
  ]
2271
2271
  type ObjectModifierTypeItems = typing.Literal[
@@ -3045,8 +3045,8 @@ type WorkspaceObjectModeItems = typing.Literal[
3045
3045
  "TEXTURE_PAINT", # Texture Paint.
3046
3046
  "PARTICLE_EDIT", # Particle Edit.
3047
3047
  "EDIT_GPENCIL", # Grease Pencil Edit Mode.Edit Grease Pencil Strokes.
3048
- "SCULPT_GPENCIL", # Grease Pencil Sculpt Mode.Sculpt Grease Pencil Strokes.
3049
- "PAINT_GPENCIL", # Grease Pencil Draw.Paint Grease Pencil Strokes.
3050
- "VERTEX_GPENCIL", # Grease Pencil Vertex Paint.Grease Pencil Vertex Paint Strokes.
3051
- "WEIGHT_GPENCIL", # Grease Pencil Weight Paint.Grease Pencil Weight Paint Strokes.
3048
+ "SCULPT_GREASE_PENCIL", # Grease Pencil Sculpt Mode.Sculpt Grease Pencil Strokes.
3049
+ "PAINT_GREASE_PENCIL", # Grease Pencil Draw.Paint Grease Pencil Strokes.
3050
+ "VERTEX_GREASE_PENCIL", # Grease Pencil Vertex Paint.Grease Pencil Vertex Paint Strokes.
3051
+ "WEIGHT_GREASE_PENCIL", # Grease Pencil Weight Paint.Grease Pencil Weight Paint Strokes.
3052
3052
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20241004
3
+ Version: 20241008
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
@@ -117,7 +117,7 @@ bl_ui/properties_data_camera/__init__.pyi,sha256=voA4pSpiwEB0_CY454oPQfpwY2Il-wk
117
117
  bl_ui/properties_data_curve/__init__.pyi,sha256=BCk8kJKO0-SyER6jlDw2l7XtwD6Sc9-9htZrOTCVN38,12921
118
118
  bl_ui/properties_data_curves/__init__.pyi,sha256=huauSiwT8GBVJrFzp3o6N6aA8ouxecfu6RgHBfc5rJg,5913
119
119
  bl_ui/properties_data_empty/__init__.pyi,sha256=PrWD2bMI4AKOBXS1-GsHXFFeVc12p4siGDQJxdmn95A,1679
120
- bl_ui/properties_data_gpencil/__init__.pyi,sha256=7FJCtytO9CmNvB_mQV2XJLrSakH19QITJr_dW2eMtXs,14269
120
+ bl_ui/properties_data_gpencil/__init__.pyi,sha256=4bY0HL8hbnP1kdd0NOI7ylg-nQMctMp5yzBNX_ev-es,8150
121
121
  bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=TprZ921sQ9ywTtTX2fb6he2Lq99dI03oCEHoChXNuic,13971
122
122
  bl_ui/properties_data_lattice/__init__.pyi,sha256=sjJh19kVQpSQV_j_7dXO0OdvKAyRNVlkoyABdJIYsPw,3504
123
123
  bl_ui/properties_data_light/__init__.pyi,sha256=4UpAkSBTbjH-SeUAb1_NLXqc_8_oqip_a0CZNb55jR4,10726
@@ -130,7 +130,7 @@ bl_ui/properties_data_shaderfx/__init__.pyi,sha256=qheRKCM-zgYYTypVdyJrjqgmD1yBX
130
130
  bl_ui/properties_data_speaker/__init__.pyi,sha256=YRayS4IxkfcvwOAJlqfSL4kjzBcaqo3gf-hmM0fcVeo,4857
131
131
  bl_ui/properties_data_volume/__init__.pyi,sha256=w6ct8kb74x8X0l1vLq6Ymq-fzezD387sQv-lBH7wohM,7115
132
132
  bl_ui/properties_freestyle/__init__.pyi,sha256=JxNJb9q2e8hRqNb7ynucmV5GKCG7y_HdQJgc9z9Th8w,22822
133
- bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=7W2f7feX-jky1zuLVDrDifNHLcnoIjPtsf3Wuz8tpLM,12428
133
+ bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=EKROB4siMEmJVWBV7rzHgO1IGv8RuVlDKD6_S5CMPAM,7898
134
134
  bl_ui/properties_mask_common/__init__.pyi,sha256=-Ae0CtS1OQZRwJ38l1xj-115MJo9xEQieAarliMc40s,5796
135
135
  bl_ui/properties_material/__init__.pyi,sha256=J3GrRdWFeh4p5w2qKtC5Dwz0XF301ATcsCPcV4kXWe0,13499
136
136
  bl_ui/properties_material_gpencil/__init__.pyi,sha256=zfCV8bG4-NABgQNpZjhRRR4Ttr0qS2H17seuJlJgX4c,8621
@@ -155,7 +155,7 @@ bl_ui/properties_workspace/__init__.pyi,sha256=H9ixaD-_K6YbmzvvzDqE8Ca1_jvGeOJ0S
155
155
  bl_ui/properties_world/__init__.pyi,sha256=2BvXUUUI6BdaA61DKNR3xNGGLSiK5kfeHW25x-s4p7w,9145
156
156
  bl_ui/space_clip/__init__.pyi,sha256=I9bHrnPSZnkPYGxKw3tlUqch3FnyL4fpyjIzG-rqpKk,45001
157
157
  bl_ui/space_console/__init__.pyi,sha256=GyduCGIGDMNbjis1BbBnfdz1Y9eCrasCPHAACb3MlXI,3315
158
- bl_ui/space_dopesheet/__init__.pyi,sha256=CtJCi733jLxgZTIV_NuxoD-fxwzWxTZJ2jv764Hdpnc,21400
158
+ bl_ui/space_dopesheet/__init__.pyi,sha256=uxBFgBdMrhvUoiwA-yvQyVw0TKC9TEp0oZU_35JA4Ls,16603
159
159
  bl_ui/space_filebrowser/__init__.pyi,sha256=mFlZd3CLqrkdD-_nftH3A8f1hVHwHeGUvWBFEpIIoaM,19466
160
160
  bl_ui/space_graph/__init__.pyi,sha256=7XFWtjx8rwzqzsIpnXcZbVgHHp1Xa6gr-GSxy5f7MhI,10909
161
161
  bl_ui/space_image/__init__.pyi,sha256=Q6rgGQ3vJ0QZTcekgTJRVVIuxBeMvvkque8wBSBgV2g,44704
@@ -170,11 +170,11 @@ bl_ui/space_statusbar/__init__.pyi,sha256=Kb64lM_S6RVATyQB1kQu-x7JSGceXsGqNyJ6AR
170
170
  bl_ui/space_text/__init__.pyi,sha256=l5CwsrWjvBl_CQQQqfjH7SbRVeAkK7z9R8UAi7GY59c,8799
171
171
  bl_ui/space_time/__init__.pyi,sha256=CsHClliVjg_FdPpaJzh2EgWkPTMZ0-_l0DCEXhx0fP8,4723
172
172
  bl_ui/space_toolsystem_common/__init__.pyi,sha256=IFq4tTh_oM6-dQWMZbuRo6HhYinOLBFC8ORj0S5ZWcs,3185
173
- bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=UNeClTvCwngdhWjPGO6awJhMmtZz6IE2Ejah-GcY7Hs,11022
174
- bl_ui/space_topbar/__init__.pyi,sha256=nBXvsE4g5M25m_fVVXWAYRPGpJFq3p95K8W-hue91z4,16175
173
+ bl_ui/space_toolsystem_toolbar/__init__.pyi,sha256=hyZX3v4vN-0nUrbXuSFbRMElaNuZtIvGMJfAjTaErt0,9927
174
+ bl_ui/space_topbar/__init__.pyi,sha256=tVupsHc6IdA1o_axDcB1Cbf0o8ARZzgLncMXgguQnWY,15316
175
175
  bl_ui/space_userpref/__init__.pyi,sha256=EGCdnPQ4iTmERhhzHcb3l-QZBQpZGoGjHMGeTlcyryY,79706
176
- bl_ui/space_view3d/__init__.pyi,sha256=WMpaiXWQFIKNeJ0tpAq_na2yUt-Q0fnX7UJiqgucZgo,169185
177
- bl_ui/space_view3d_toolbar/__init__.pyi,sha256=U4P88SaA-UbGd9LlU_7bWuApb2N2h0bb9a_H-VFzS_g,76673
176
+ bl_ui/space_view3d/__init__.pyi,sha256=lbtZoqy_ghQUEA9_7_Vt_5OslCQ6G64m5-G75ra5xu0,153717
177
+ bl_ui/space_view3d_toolbar/__init__.pyi,sha256=h2PDlE_56tCymRzbSaAf7mu7TIKoSghVjswczMjIG48,76293
178
178
  bl_ui/utils/__init__.pyi,sha256=qkgl-AlZI3QD4UUITGIvN9PbifOI4BPkZBpu7WyxMBw,483
179
179
  bl_ui_utils/__init__.pyi,sha256=ZOo9_bgn1c9NiCNalhTplCD2IChG67rU_V3BeG0k4pE,93
180
180
  bl_ui_utils/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -220,14 +220,14 @@ bpy/ops/ed/__init__.pyi,sha256=eCvshg5UshWukVfIBIFZ71KL1q1faZSIOt1kC1s1Nu8,8817
220
220
  bpy/ops/export_anim/__init__.pyi,sha256=MdpU1cY6FvYpVacztZz0uIbQDYHgLx3vs9WLpG9ftKE,2197
221
221
  bpy/ops/export_scene/__init__.pyi,sha256=KeWNJhzHkirCE5T3bzufjGlDHaDC8TbSjMl4K7E6OKY,39077
222
222
  bpy/ops/extensions/__init__.pyi,sha256=zCW9mLu3EIwz3Rrkc1vhQ7zn6zIB72BsLCYfgkMv574,18048
223
- bpy/ops/file/__init__.pyi,sha256=Fl10aCdoLEVuzxzq8lJmhKGzbeS_QjBBGsUMnKzUWKI,25564
223
+ bpy/ops/file/__init__.pyi,sha256=JTtbrNEORTNtuauMTwOQkQX1C2JHjQL-bubGccj14rw,25681
224
224
  bpy/ops/fluid/__init__.pyi,sha256=PM7jfvEosHmKpWcBTNwUgExKC5GpPHczHl82bvgTnWs,5516
225
225
  bpy/ops/font/__init__.pyi,sha256=cVNVWyyoUAeuHvbrQLNfZbatFnhweBGwh7rS-Zxuc-g,19135
226
226
  bpy/ops/geometry/__init__.pyi,sha256=Ix8MGXa5gZBQT3aWGmDfrKPx-MTtmloRflfwiHicuTU,8987
227
227
  bpy/ops/gizmogroup/__init__.pyi,sha256=OFN5NNvr_HFc_L7pvjSWKY_D8nF2_Ue8z6nGjB-_xac,1595
228
- bpy/ops/gpencil/__init__.pyi,sha256=Kquv3mCTVCIrdbPO4JtM9NWYsQuR9U9XzWVtj9HNmGI,108001
228
+ bpy/ops/gpencil/__init__.pyi,sha256=xef0m8m4jVKzqncUi9CezsXgqES8iAYJzcEKtDfTXTY,6112
229
229
  bpy/ops/graph/__init__.pyi,sha256=uH--tIvXthUVXBm5vcmpGw_OgRG5mMZ8ITttZBqUDSo,51543
230
- bpy/ops/grease_pencil/__init__.pyi,sha256=TIt5uvDgbVcPCFc5u0V7yWDaZExXDqes8VaecZbdCOQ,74238
230
+ bpy/ops/grease_pencil/__init__.pyi,sha256=igPvA38S9DQqcLOgUJRM36I4Kh3xBbi-qphISiqvyBM,74880
231
231
  bpy/ops/image/__init__.pyi,sha256=dJQe9-vHnpLHxDqXWfx3Yq9CyIHKkCBsxf4-vS1rmu8,59838
232
232
  bpy/ops/import_anim/__init__.pyi,sha256=7BExOyxBpXdbfQQN_foBI0FIfqHte9U1nfWEvNKYH0Y,3216
233
233
  bpy/ops/import_curve/__init__.pyi,sha256=U3eiL0CsWblWZe8O58JOxSXhr2sgHRHKwVzozIMsck4,651
@@ -238,10 +238,10 @@ bpy/ops/marker/__init__.pyi,sha256=Ny5T3pex5r11KmT8SfmDdJ2tUlRX7FZGrU9fVTCA6CQ,7
238
238
  bpy/ops/mask/__init__.pyi,sha256=-Lj0kCugHLV9nnGd0Ah5rXWdURQAI9fv6PBI73ucJvE,23199
239
239
  bpy/ops/material/__init__.pyi,sha256=KDgPB2utYKt3DSXKI4f71x1A4Di-_AdWpAbNah3N3AE,1187
240
240
  bpy/ops/mball/__init__.pyi,sha256=jqOLev5gvBK4fx9CLXj1qxWyTp3z0kqVG1Fxk4Mnzn8,5384
241
- bpy/ops/mesh/__init__.pyi,sha256=EswEbctouuQD08OuJIkh3647uiUC5fzgd8_NxfL_00g,155123
241
+ bpy/ops/mesh/__init__.pyi,sha256=Z10PB4bFyJJHMUPrKaUMb3ZSyybC7ukhyVfE9bzwBl8,156206
242
242
  bpy/ops/nla/__init__.pyi,sha256=uhpT_iNKbnI3zN0dI3_w4ZuEeBSGy_2Z4eUsTTj3z48,24221
243
243
  bpy/ops/node/__init__.pyi,sha256=3P5RJJLhHtwason9eKv2W9UAU16jKsiipNFstrmKNDQ,69731
244
- bpy/ops/object/__init__.pyi,sha256=RZ6y323WYIngaPCdBfCjfZls-cWOsBsA2FCyrkML2cY,206006
244
+ bpy/ops/object/__init__.pyi,sha256=FX1sG0IIC5soGl07JkQTKUxuGJ0HHTgtX4R67zXGojc,203427
245
245
  bpy/ops/outliner/__init__.pyi,sha256=o5OxwPlRmadDEhvCUSmt8u1aJ8euFSCV-UYCknYymdI,38952
246
246
  bpy/ops/paint/__init__.pyi,sha256=CwUI97PIYq0-IiQu9oZBP1cvc62P4wSTDyPbnILs5EI,44921
247
247
  bpy/ops/paintcurve/__init__.pyi,sha256=ej9Ou29-VVY4oHCAsSmdBtOjcO0ZQpQdsBSzfDKYMJw,4261
@@ -271,13 +271,13 @@ bpy/ops/uilist/__init__.pyi,sha256=L4xQFB8gZEK8eR2tymJBIVwALoVQLh9gwGkIjDzORyI,2
271
271
  bpy/ops/uv/__init__.pyi,sha256=ociGOFaeH4aChcVFMtC167ZWtM4roFQveDgKiqbAK3c,52706
272
272
  bpy/ops/view2d/__init__.pyi,sha256=UWYslz64I_HIULKVyiYd9bVK38ypxss_9EZySgQkyuI,9137
273
273
  bpy/ops/view3d/__init__.pyi,sha256=2lr2OOlmYao1DxhG3UugV_WXB8IViYGBL5WXvxHUXOE,41228
274
- bpy/ops/wm/__init__.pyi,sha256=9fv_Z1Kl0Ff4UDvnXCBveP7b6QQjIqIro0MUHnSqdOM,244226
274
+ bpy/ops/wm/__init__.pyi,sha256=MKf0TcpQQxZ2cFef2n6kr7vJP6weAAyN1CrflXzEHZ4,229727
275
275
  bpy/ops/workspace/__init__.pyi,sha256=4qG0-HkVfaGfdBe9QvBCKUox03nb1ZfeV1fz-0b3KJY,3133
276
276
  bpy/ops/world/__init__.pyi,sha256=ytaDhwJ-K4SbWylChL1za6lvMNM2-RX1S0BR7892Afg,946
277
277
  bpy/path/__init__.pyi,sha256=lXSqQ4p4zukM_-6TaN4v7lNWFVY0xbYGMkOVLpkbpsI,5444
278
278
  bpy/props/__init__.pyi,sha256=jUUCk6C-K0f8Qt8-ln9GB_IH0NteN6meCPjr2spyhq4,29439
279
- bpy/types/__init__.pyi,sha256=vG2WRbkH0AM3PFEuOTrXMzenhxL33XWwzxUT0--iJ-E,5375998
280
- bpy/typing/__init__.pyi,sha256=7jjNtrLEpp8FCObTBb-IvF1rzAzDIXa1vaDvS58s9yg,137984
279
+ bpy/types/__init__.pyi,sha256=iPWFc2Rsde9MiftRwFMftvw_CxkgIhm5m_GV5jTN4WI,5368640
280
+ bpy/typing/__init__.pyi,sha256=saOMrWBpgUikk_3A4S6Wu0js082MkjXgbnTpUTlcAJ4,138032
281
281
  bpy/utils/__init__.pyi,sha256=AEb3oVPPh_gqLyKORj6rsxDPWvXIHjqp_eME3z98GcM,13117
282
282
  bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
283
283
  bpy/utils/units/__init__.pyi,sha256=r9G6UXferw_5pDijn-FmpyhYSnEng3_y-5apdkPAKl0,2631
@@ -359,7 +359,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
359
359
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
360
360
  rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
361
361
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
362
- fake_bpy_module-20241004.dist-info/METADATA,sha256=4mPHig31Gmanj41P4IGVi-aUm-gt4FfHKqr4xq2gv8Y,7289
363
- fake_bpy_module-20241004.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
364
- fake_bpy_module-20241004.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
365
- fake_bpy_module-20241004.dist-info/RECORD,,
362
+ fake_bpy_module-20241008.dist-info/METADATA,sha256=vyS7Pj611yov8k4dLLRv7CqO59CY533xht9_kVEvnSs,7289
363
+ fake_bpy_module-20241008.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
364
+ fake_bpy_module-20241008.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
365
+ fake_bpy_module-20241008.dist-info/RECORD,,