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

@@ -45,6 +45,90 @@ class ANIM_OT_keying_set_export(bpy.types.Operator):
45
45
  """
46
46
  ...
47
47
 
48
+ class ANIM_OT_slot_new_for_id(bpy.types.Operator):
49
+ """Create a new Action Slot for an ID.Note that _which_ ID should get this slot must be set in the 'animated_id' context pointer, using:"""
50
+
51
+ bl_description: typing.Any
52
+ bl_idname: typing.Any
53
+ bl_label: typing.Any
54
+ bl_options: typing.Any
55
+ bl_rna: typing.Any
56
+ id_data: typing.Any
57
+
58
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
59
+ """
60
+
61
+ :return: The RNA type or default when not found.
62
+ :rtype: bpy.types.Struct
63
+ """
64
+ ...
65
+
66
+ def bl_rna_get_subclass_py(self) -> typing.Any:
67
+ """
68
+
69
+ :return: The class or default when not found.
70
+ :rtype: typing.Any
71
+ """
72
+ ...
73
+
74
+ def execute(self, context):
75
+ """
76
+
77
+ :param context:
78
+ """
79
+ ...
80
+
81
+ @classmethod
82
+ def poll(cls, context):
83
+ """
84
+
85
+ :param context:
86
+ """
87
+ ...
88
+
89
+ class ANIM_OT_slot_unassign_from_id(bpy.types.Operator):
90
+ """Un-assign the assigned Action Slot from an ID.Note that _which_ ID should get this slot unassigned must be set in the
91
+ 'animated_id' context pointer, using:
92
+ """
93
+
94
+ bl_description: typing.Any
95
+ bl_idname: typing.Any
96
+ bl_label: typing.Any
97
+ bl_options: typing.Any
98
+ bl_rna: typing.Any
99
+ id_data: typing.Any
100
+
101
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
102
+ """
103
+
104
+ :return: The RNA type or default when not found.
105
+ :rtype: bpy.types.Struct
106
+ """
107
+ ...
108
+
109
+ def bl_rna_get_subclass_py(self) -> typing.Any:
110
+ """
111
+
112
+ :return: The class or default when not found.
113
+ :rtype: typing.Any
114
+ """
115
+ ...
116
+
117
+ def execute(self, context):
118
+ """
119
+
120
+ :param context:
121
+ """
122
+ ...
123
+
124
+ @classmethod
125
+ def poll(cls, context):
126
+ """
127
+
128
+ :param context:
129
+ """
130
+ ...
131
+
48
132
  class ARMATURE_OT_collection_remove_unused(bpy.types.Operator):
49
133
  """Remove all bone collections that have neither bones nor children. This is done recursively, so bone collections that only have unused children are also removed"""
50
134
 
@@ -1,6 +1,7 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
+ import bl_ui.space_properties
4
5
  import bl_ui.utils
5
6
  import bpy.types
6
7
  import rna_prop_ui
@@ -115,6 +116,42 @@ class DATA_PT_camera(CameraButtonsPanel, bpy.types.Panel):
115
116
  """
116
117
  ...
117
118
 
119
+ class DATA_PT_camera_animation(
120
+ rna_prop_ui.PropertyPanel,
121
+ CameraButtonsPanel,
122
+ bl_ui.space_properties.PropertiesAnimationMixin,
123
+ bpy.types.Panel,
124
+ ):
125
+ """Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
126
+ the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
127
+ """
128
+
129
+ COMPAT_ENGINES: typing.Any
130
+ bl_context: typing.Any
131
+ bl_label: typing.Any
132
+ bl_options: typing.Any
133
+ bl_order: typing.Any
134
+ bl_region_type: typing.Any
135
+ bl_rna: typing.Any
136
+ bl_space_type: typing.Any
137
+ id_data: typing.Any
138
+
139
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
140
+ """
141
+
142
+ :return: The RNA type or default when not found.
143
+ :rtype: bpy.types.Struct
144
+ """
145
+ ...
146
+
147
+ def bl_rna_get_subclass_py(self) -> typing.Any:
148
+ """
149
+
150
+ :return: The class or default when not found.
151
+ :rtype: typing.Any
152
+ """
153
+ ...
154
+
118
155
  class DATA_PT_camera_background_image(CameraButtonsPanel, bpy.types.Panel):
119
156
  COMPAT_ENGINES: typing.Any
120
157
  bl_context: typing.Any
@@ -1,6 +1,7 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
+ import bl_ui.space_properties
4
5
  import bpy.types
5
6
  import rna_prop_ui
6
7
 
@@ -396,6 +397,48 @@ class MATERIAL_MT_context_menu(bpy.types.Menu):
396
397
  """
397
398
  ...
398
399
 
400
+ class MATERIAL_PT_animation(
401
+ bpy.types.Panel,
402
+ MaterialButtonsPanel,
403
+ bl_ui.space_properties.PropertiesAnimationMixin,
404
+ ):
405
+ """Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
406
+ the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
407
+ """
408
+
409
+ COMPAT_ENGINES: typing.Any
410
+ bl_context: typing.Any
411
+ bl_label: typing.Any
412
+ bl_options: typing.Any
413
+ bl_order: typing.Any
414
+ bl_region_type: typing.Any
415
+ bl_rna: typing.Any
416
+ bl_space_type: typing.Any
417
+ id_data: typing.Any
418
+
419
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
420
+ """
421
+
422
+ :return: The RNA type or default when not found.
423
+ :rtype: bpy.types.Struct
424
+ """
425
+ ...
426
+
427
+ def bl_rna_get_subclass_py(self) -> typing.Any:
428
+ """
429
+
430
+ :return: The class or default when not found.
431
+ :rtype: typing.Any
432
+ """
433
+ ...
434
+
435
+ def draw(self, context):
436
+ """
437
+
438
+ :param context:
439
+ """
440
+ ...
441
+
399
442
  class MATERIAL_PT_custom_props(
400
443
  rna_prop_ui.PropertyPanel, MaterialButtonsPanel, bpy.types.Panel
401
444
  ):
@@ -10,8 +10,8 @@ GenericType1 = typing.TypeVar("GenericType1")
10
10
  GenericType2 = typing.TypeVar("GenericType2")
11
11
 
12
12
  class DOPESHEET_HT_editor_buttons:
13
- @staticmethod
14
- def draw_header(context, layout):
13
+ @classmethod
14
+ def draw_header(cls, context, layout):
15
15
  """
16
16
 
17
17
  :param context:
@@ -96,3 +96,40 @@ class PROPERTIES_PT_options(bpy.types.Panel):
96
96
  :param context:
97
97
  """
98
98
  ...
99
+
100
+ class PropertiesAnimationMixin:
101
+ """Mix-in class for Animation panels.This class can be used to show a generic 'Animation' panel for IDs shown in
102
+ the properties editor. Specific ID types need specific subclasses.For an example, see DATA_PT_camera_animation in properties_data_camera.py
103
+ """
104
+
105
+ bl_context: typing.Any
106
+ bl_label: typing.Any
107
+ bl_options: typing.Any
108
+ bl_order: typing.Any
109
+ bl_region_type: typing.Any
110
+ bl_space_type: typing.Any
111
+
112
+ def draw(self, context):
113
+ """
114
+
115
+ :param context:
116
+ """
117
+ ...
118
+
119
+ @staticmethod
120
+ def draw_action_and_slot_selector(context, layout, animated_id):
121
+ """
122
+
123
+ :param context:
124
+ :param layout:
125
+ :param animated_id:
126
+ """
127
+ ...
128
+
129
+ @classmethod
130
+ def poll(cls, context):
131
+ """
132
+
133
+ :param context:
134
+ """
135
+ ...
bpy/ops/anim/__init__.pyi CHANGED
@@ -950,6 +950,20 @@ def scene_range_frame(
950
950
 
951
951
  ...
952
952
 
953
+ def slot_new_for_id(
954
+ override_context: bpy.types.Context | dict[str, typing.Any] = None,
955
+ execution_context: int | str | None = None,
956
+ undo: bool | None = None,
957
+ ):
958
+ """Create a new action slot for this data-block, to hold its animation
959
+
960
+ :type override_context: bpy.types.Context | dict[str, typing.Any]
961
+ :type execution_context: int | str | None
962
+ :type undo: bool | None
963
+ """
964
+
965
+ ...
966
+
953
967
  def slot_new_for_object(
954
968
  override_context: bpy.types.Context | dict[str, typing.Any] = None,
955
969
  execution_context: int | str | None = None,
@@ -964,12 +978,12 @@ def slot_new_for_object(
964
978
 
965
979
  ...
966
980
 
967
- def slot_unassign_object(
981
+ def slot_unassign_from_id(
968
982
  override_context: bpy.types.Context | dict[str, typing.Any] = None,
969
983
  execution_context: int | str | None = None,
970
984
  undo: bool | None = None,
971
985
  ):
972
- """Clear the assigned action slot, effectively making this data-block non-animated
986
+ """Un-assign the action slot, effectively making this data-block non-animated
973
987
 
974
988
  :type override_context: bpy.types.Context | dict[str, typing.Any]
975
989
  :type execution_context: int | str | None
bpy/types/__init__.pyi CHANGED
@@ -257400,6 +257400,10 @@ ANIM_MT_keyframe_insert_pie: bl_ui.anim.ANIM_MT_keyframe_insert_pie
257400
257400
 
257401
257401
  ANIM_OT_keying_set_export: bl_operators.anim.ANIM_OT_keying_set_export
257402
257402
 
257403
+ ANIM_OT_slot_new_for_id: bl_operators.anim.ANIM_OT_slot_new_for_id
257404
+
257405
+ ANIM_OT_slot_unassign_from_id: bl_operators.anim.ANIM_OT_slot_unassign_from_id
257406
+
257403
257407
  ARMATURE_MT_collection_context_menu: bl_ui.properties_data_armature.ARMATURE_MT_collection_context_menu
257404
257408
 
257405
257409
  ARMATURE_MT_collection_tree_context_menu: bl_ui.properties_data_armature.ARMATURE_MT_collection_tree_context_menu
@@ -257774,6 +257778,8 @@ DATA_PT_bone_collections: bl_ui.properties_data_armature.DATA_PT_bone_collection
257774
257778
 
257775
257779
  DATA_PT_camera: bl_ui.properties_data_camera.DATA_PT_camera
257776
257780
 
257781
+ DATA_PT_camera_animation: bl_ui.properties_data_camera.DATA_PT_camera_animation
257782
+
257777
257783
  DATA_PT_camera_background_image: bl_ui.properties_data_camera.DATA_PT_camera_background_image
257778
257784
 
257779
257785
  DATA_PT_camera_display: bl_ui.properties_data_camera.DATA_PT_camera_display
@@ -258408,6 +258414,8 @@ MASK_UL_layers: bl_ui.properties_mask_common.MASK_UL_layers
258408
258414
 
258409
258415
  MATERIAL_MT_context_menu: bl_ui.properties_material.MATERIAL_MT_context_menu
258410
258416
 
258417
+ MATERIAL_PT_animation: bl_ui.properties_material.MATERIAL_PT_animation
258418
+
258411
258419
  MATERIAL_PT_custom_props: bl_ui.properties_material.MATERIAL_PT_custom_props
258412
258420
 
258413
258421
  MATERIAL_PT_freestyle_line: bl_ui.properties_freestyle.MATERIAL_PT_freestyle_line
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: fake-bpy-module
3
- Version: 20240902
3
+ Version: 20240903
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
@@ -50,7 +50,7 @@ bl_math/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
50
  bl_operators/__init__.pyi,sha256=-qcbLKmWzQQO-_y-xU8-eSElH4LBqRYMyOhHGCpuKOo,1574
51
51
  bl_operators/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
52
  bl_operators/add_mesh_torus/__init__.pyi,sha256=m2hhJ8mqapeXt0l2GuNdbRKFvStRzgLDYG2PRKQhq2E,1323
53
- bl_operators/anim/__init__.pyi,sha256=j0FhsoPmL26MM2H9EWityG7oJQ_CJnvDbZJqRbOQC8s,7120
53
+ bl_operators/anim/__init__.pyi,sha256=tKTgBNbh-AO6QfH4WYaeACcJxEvTD6NBvdtYSDKwff4,8973
54
54
  bl_operators/assets/__init__.pyi,sha256=THac4Ge5gEQFPIq-D_vUeBX0F2kDNxv_lHY7rfGIACI,2966
55
55
  bl_operators/bmesh/__init__.pyi,sha256=-a6Tfl9k1DQ1bd2p5-X7OmVBGt_zaBMj9E98HON_kYc,200
56
56
  bl_operators/bmesh/find_adjacent/__init__.pyi,sha256=GaTKWwdsYqXkDSr6GNrTgK7yFj8xia_vLcfhtRWLWbI,701
@@ -109,7 +109,7 @@ bl_ui/properties_collection/__init__.pyi,sha256=Gj_Uu-9rqDOfl4QOes7GlUehFjfUPH4R
109
109
  bl_ui/properties_constraint/__init__.pyi,sha256=82LT2Dd9DtPIq8qVW9YAWJldBrbk-ByQALJiA6azFas,64525
110
110
  bl_ui/properties_data_armature/__init__.pyi,sha256=6_HOWOoJyI6q6SLzM2fzmR9sIqeAq3x4DvwkvUXy5Zk,12924
111
111
  bl_ui/properties_data_bone/__init__.pyi,sha256=hRK5XTqXsuhPEVyL6MJ9CUAwZEAjSzp41zJe74iUnK0,8574
112
- bl_ui/properties_data_camera/__init__.pyi,sha256=xQEsX1F7vXCUiEFbsrwRgZrO5b12LqkGj3-h_dRe8Vk,11524
112
+ bl_ui/properties_data_camera/__init__.pyi,sha256=jg48yqJC2u02YD0JazH1646786f5QMffnx3tJmkjv14,12586
113
113
  bl_ui/properties_data_curve/__init__.pyi,sha256=aRVnG_HnY4YdpYql21COzbHcHbU_BgMV-33c5SrKMP4,12566
114
114
  bl_ui/properties_data_curves/__init__.pyi,sha256=5d99XLdHFcVmTGFUgQXnxD2KgOQ6s1Tu3BpW8Qwn434,5210
115
115
  bl_ui/properties_data_empty/__init__.pyi,sha256=Kyescm9EWJWMGDEwxG8rfmGWm4_vvEUhtSa0rBI5Uj0,1868
@@ -128,7 +128,7 @@ bl_ui/properties_data_volume/__init__.pyi,sha256=6D7_WtRlWF7cFh8mFiiOcxTWNEFx-fZ
128
128
  bl_ui/properties_freestyle/__init__.pyi,sha256=zUlWiCjXRMPZVsVUec74A7elabpS1oeVnhpd1j-Boes,23016
129
129
  bl_ui/properties_grease_pencil_common/__init__.pyi,sha256=11SgflPY04SBvBuHDOg1I0huK_ZTi2Oz70m7At0EfMM,13385
130
130
  bl_ui/properties_mask_common/__init__.pyi,sha256=KW5BFWcrr8gYQknfyisW5w4g3T-6-UDhb2aT7UtGGro,6309
131
- bl_ui/properties_material/__init__.pyi,sha256=RzE3sZt15HO5uYdlIIv6cNpUn3U7EzaOaEgp3Ji7On8,13155
131
+ bl_ui/properties_material/__init__.pyi,sha256=pm48ycIkExon0vOYvXNePTSHFbY3toJfaWLTX5j37tM,14276
132
132
  bl_ui/properties_material_gpencil/__init__.pyi,sha256=NJ6nwwPXQTsbvN72b0Ux4eoUxNi0QdbrPuWHJ3OR9Sg,8082
133
133
  bl_ui/properties_object/__init__.pyi,sha256=vqZTzYVOFxscHmbQWAsRA-CowLjG5vIV1PVcL0lt6lA,11046
134
134
  bl_ui/properties_output/__init__.pyi,sha256=r1Yq9PHI3_xxXkqG3-e_kril8toBtIq3ftG-sIK75vU,14609
@@ -151,7 +151,7 @@ bl_ui/properties_workspace/__init__.pyi,sha256=FOK4f6JVYYJTO-UyhaisBhh5lq-5meO8K
151
151
  bl_ui/properties_world/__init__.pyi,sha256=nMqBBIgIFUppgr6j-99QC1idlcPVbfJRPnE0eTm-h54,8572
152
152
  bl_ui/space_clip/__init__.pyi,sha256=L-eh0dxSRC-BGDBCYxHG_wklhtx7diovHhmy8gozZT4,47758
153
153
  bl_ui/space_console/__init__.pyi,sha256=e8IpU4-lBWY4_uozzVjSGkj8q7Mcr4wGeY6vQxGC4sw,3624
154
- bl_ui/space_dopesheet/__init__.pyi,sha256=88TWZWjABndCIKs7dPTv3l3OGkvzb-gbp-w6aPJ849o,22092
154
+ bl_ui/space_dopesheet/__init__.pyi,sha256=3fhcWDi0lvXAJR7mKvTT28TkHRamZAbBsU2guDLWxTo,22096
155
155
  bl_ui/space_filebrowser/__init__.pyi,sha256=YWQWJ235_EnBRFQSIicEGsHArJ7bmZGb8cWPBUEWIv4,20723
156
156
  bl_ui/space_graph/__init__.pyi,sha256=Jv0T0jurR8ad3QV5VTQxMeacROOw1lsM3YLSxFsOdl0,11722
157
157
  bl_ui/space_image/__init__.pyi,sha256=hTzquhCkw-yLNWvAW-4ADTMqb6gmB8LYqmHEJIycn-M,47163
@@ -159,7 +159,7 @@ bl_ui/space_info/__init__.pyi,sha256=OA_SjJnHNfv4TBu647shQbZtSryhtfPW849ZDU1uXf0
159
159
  bl_ui/space_nla/__init__.pyi,sha256=iwfoNM2ZyZfeb4jJR4BNg9ys_RRjo4BKOO-l9bXCzCE,10252
160
160
  bl_ui/space_node/__init__.pyi,sha256=AjLKbr3plUzPai2ziAuurU4LoAlek9hYpzeBaiqAdP0,20067
161
161
  bl_ui/space_outliner/__init__.pyi,sha256=T8KGIFcvlhXpLegq4i2k0cXNy_B4CnLUnijP-9jyDj0,8735
162
- bl_ui/space_properties/__init__.pyi,sha256=qWOFhhl1pqvi234S9Pi5kcKVgpcXYZ-bSAsbnbtn2tk,2075
162
+ bl_ui/space_properties/__init__.pyi,sha256=C7VYD1Y6qYC_G8XvTjjm21JNyKrdbkrZn8XdaqVGUE8,2941
163
163
  bl_ui/space_sequencer/__init__.pyi,sha256=xcmLEQucjljFbbo1E_F1RwRwytdAOmZXSQM3dxmVnXw,55456
164
164
  bl_ui/space_spreadsheet/__init__.pyi,sha256=ldT6OZgfYuEBxUwYZq6INfvix2JNA9MtJ1BWUdyZBzo,1651
165
165
  bl_ui/space_statusbar/__init__.pyi,sha256=idjVMqEm8Ii23DepGztLWz_ej7BhUFUAm70M9tdla0U,740
@@ -197,7 +197,7 @@ bpy/app/translations/__init__.pyi,sha256=W3L2ZN2l8DDUs84vlmsH1FxbBZTuesKGN02nB0K
197
197
  bpy/msgbus/__init__.pyi,sha256=klT8MEBSFA8gRXuaS8sJ2DMNtcTfb0O9lhpYh6hr6Ac,2717
198
198
  bpy/ops/__init__.pyi,sha256=lkepW1mLex8wS958nZDk_xDJ2FL-U3VXu1NbDIbhdrw,5489
199
199
  bpy/ops/action/__init__.pyi,sha256=dzqlbHa_pnoQzTBYT4au5jn_BsVnxpMpZxD6L5pyQfQ,24982
200
- bpy/ops/anim/__init__.pyi,sha256=S4ujeJemx8jCHFK10M9viciXjONSfkWzUnFUYmVb_q4,31891
200
+ bpy/ops/anim/__init__.pyi,sha256=kN80zUL5Tevx22inlEduCPER4OrEDdvPpgym5wOqWNY,32299
201
201
  bpy/ops/armature/__init__.pyi,sha256=IMxUV8wah7kDDXKXXgvhTQx1M646Mbxo2Ql-jKE3r44,28195
202
202
  bpy/ops/asset/__init__.pyi,sha256=eLklWs7neJnC34omhMUTduX2fKL8dUrft72_QjFgAow,11292
203
203
  bpy/ops/boid/__init__.pyi,sha256=ftfvtWhSLFXZxyW2uamL0KGUYPgURwFIJRr-BJVUTA4,3535
@@ -274,7 +274,7 @@ bpy/ops/workspace/__init__.pyi,sha256=ouILPZIQntnAJtoyo0MeMfD7p4MX6XX__5nxQuJaVb
274
274
  bpy/ops/world/__init__.pyi,sha256=fNifYrJKsxpJb6jqQHCJTlf7iNR5fzV1saFRILtDZOE,1029
275
275
  bpy/path/__init__.pyi,sha256=J_4vrRw_TTuMW4KHqSHZqYIKfDoCgG6Wv1PIFZx7__4,5612
276
276
  bpy/props/__init__.pyi,sha256=5dF03F-bYYW-j5P9eDOgSJ07JYRVwMvjmMjBYjCrjS8,29631
277
- bpy/types/__init__.pyi,sha256=sNcqJD93k1Poj0yYXrnUKHva5AwuJkXzzZY_xyYEIdE,6352088
277
+ bpy/types/__init__.pyi,sha256=JvcqP-HEF11D_YiTOcVQtaPKaVh5-E20IA9BJfEx4Lk,6352389
278
278
  bpy/utils/__init__.pyi,sha256=--TTIvXJlO1WRjJS4Jv_EM-XWCp_952xAm3M_O4L5O4,13537
279
279
  bpy/utils/previews/__init__.pyi,sha256=0mvcirUV7D4ByWzEUIBVEEJ1VTFhBjBcstllI7L6MRc,2439
280
280
  bpy/utils/units/__init__.pyi,sha256=Rdhm-yBFBRp5tGXLRkMjGaQ_LB9GQA3PbvcgGFieCl4,2742
@@ -358,7 +358,7 @@ rna_xml/__init__.pyi,sha256=aUk0kaxu1bMT5z1b2S_CnI0r-p7119GGYDjeV65sx6w,670
358
358
  rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
359
359
  sys_info/__init__.pyi,sha256=-GCmGVtiditgEnxiqi7hwH2wbEMmrtUNGvMEbxVezU4,189
360
360
  sys_info/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
361
- fake_bpy_module-20240902.dist-info/METADATA,sha256=WsCg8MPZYGqvz0oHF-tjAdnD00o5OcijLZVnohcqxjA,7289
362
- fake_bpy_module-20240902.dist-info/WHEEL,sha256=UvcQYKBHoFqaQd6LKyqHw9fxEolWLQnlzP0h_LgJAfI,91
363
- fake_bpy_module-20240902.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
364
- fake_bpy_module-20240902.dist-info/RECORD,,
361
+ fake_bpy_module-20240903.dist-info/METADATA,sha256=I9XE7rapgccOlRpwhaX-nrgY8UvE2wkshTGGFzijWD0,7289
362
+ fake_bpy_module-20240903.dist-info/WHEEL,sha256=ixB2d4u7mugx_bCBycvM9OzZ5yD7NmPXFRtKlORZS2Y,91
363
+ fake_bpy_module-20240903.dist-info/top_level.txt,sha256=laOLfHIg0_6N4ntsGrWh85yODawYeLVGI-wex_FGLUI,509
364
+ fake_bpy_module-20240903.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (74.0.0)
2
+ Generator: setuptools (74.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5