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

@@ -5,49 +5,6 @@ import numpy.typing as npt
5
5
  import _bpy_types
6
6
  import bpy.types
7
7
 
8
- class MeshMirrorUV(_bpy_types.Operator):
9
- """Copy mirror UV coordinates on the X axis based on a mirrored mesh"""
10
-
11
- bl_idname: typing.Any
12
- bl_label: typing.Any
13
- bl_options: 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 do_mesh_mirror_UV(self, mesh, DIR) -> None:
32
- """
33
-
34
- :param mesh:
35
- :param DIR:
36
- """
37
-
38
- def execute(self, context) -> None:
39
- """
40
-
41
- :param context:
42
- """
43
-
44
- @classmethod
45
- def poll(cls, context) -> None:
46
- """
47
-
48
- :param context:
49
- """
50
-
51
8
  class MeshSelectNext(_bpy_types.Operator):
52
9
  """Select the next element (using selection order)"""
53
10
 
@@ -725,3 +725,4 @@ class MESH_UL_color_attributes_selector(_bpy_types.UIList, ColorAttributesListBa
725
725
  """
726
726
 
727
727
  def draw_attribute_warnings(context, layout, attributes) -> None: ...
728
+ def draw_shape_key_properties(context, layout) -> None: ...
@@ -443,6 +443,41 @@ class DOPESHEET_MT_view_pie(_bpy_types.Menu):
443
443
  :param context:
444
444
  """
445
445
 
446
+ class DOPESHEET_PT_ShapeKey(_bpy_types.Panel):
447
+ bl_category: typing.Any
448
+ bl_label: typing.Any
449
+ bl_region_type: typing.Any
450
+ bl_rna: typing.Any
451
+ bl_space_type: typing.Any
452
+ id_data: typing.Any
453
+
454
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
455
+ """
456
+
457
+ :return: The RNA type or default when not found.
458
+ :rtype: bpy.types.Struct
459
+ """
460
+
461
+ def bl_rna_get_subclass_py(self) -> typing.Any:
462
+ """
463
+
464
+ :return: The class or default when not found.
465
+ :rtype: typing.Any
466
+ """
467
+
468
+ def draw(self, context) -> None:
469
+ """
470
+
471
+ :param context:
472
+ """
473
+
474
+ @classmethod
475
+ def poll(cls, context) -> None:
476
+ """
477
+
478
+ :param context:
479
+ """
480
+
446
481
  class DOPESHEET_PT_action(DopesheetActionPanelBase, _bpy_types.Panel):
447
482
  bl_category: typing.Any
448
483
  bl_label: typing.Any
@@ -459,6 +459,42 @@ class SEQUENCER_MT_marker(_bpy_types.Menu):
459
459
  :param context:
460
460
  """
461
461
 
462
+ class SEQUENCER_MT_modifier_add(_bpy_types.Menu):
463
+ MODIFIER_TYPES_I18N_CONTEXT: typing.Any
464
+ MODIFIER_TYPES_TO_LABELS: typing.Any
465
+ bl_label: typing.Any
466
+ bl_options: typing.Any
467
+ bl_rna: typing.Any
468
+ id_data: typing.Any
469
+
470
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
471
+ """
472
+
473
+ :return: The RNA type or default when not found.
474
+ :rtype: bpy.types.Struct
475
+ """
476
+
477
+ def bl_rna_get_subclass_py(self) -> typing.Any:
478
+ """
479
+
480
+ :return: The class or default when not found.
481
+ :rtype: typing.Any
482
+ """
483
+
484
+ def draw(self, context) -> None:
485
+ """
486
+
487
+ :param context:
488
+ """
489
+
490
+ @classmethod
491
+ def operator_modifier_add(cls, layout, mod_type) -> None:
492
+ """
493
+
494
+ :param layout:
495
+ :param mod_type:
496
+ """
497
+
462
498
  class SEQUENCER_MT_navigation(_bpy_types.Menu):
463
499
  bl_label: typing.Any
464
500
  bl_rna: typing.Any
@@ -910,6 +946,31 @@ class SEQUENCER_MT_strip_mirror(_bpy_types.Menu):
910
946
  :param context:
911
947
  """
912
948
 
949
+ class SEQUENCER_MT_strip_modifiers(_bpy_types.Menu):
950
+ bl_label: typing.Any
951
+ bl_rna: typing.Any
952
+ id_data: typing.Any
953
+
954
+ def bl_rna_get_subclass(self) -> bpy.types.Struct:
955
+ """
956
+
957
+ :return: The RNA type or default when not found.
958
+ :rtype: bpy.types.Struct
959
+ """
960
+
961
+ def bl_rna_get_subclass_py(self) -> typing.Any:
962
+ """
963
+
964
+ :return: The class or default when not found.
965
+ :rtype: typing.Any
966
+ """
967
+
968
+ def draw(self, _context) -> None:
969
+ """
970
+
971
+ :param _context:
972
+ """
973
+
913
974
  class SEQUENCER_MT_strip_movie(_bpy_types.Menu):
914
975
  bl_label: typing.Any
915
976
  bl_rna: typing.Any
bpy/ops/mesh/__init__.pyi CHANGED
@@ -1072,24 +1072,6 @@ def face_split_by_edges(
1072
1072
  :type undo: bool | None
1073
1073
  """
1074
1074
 
1075
- def faces_mirror_uv(
1076
- execution_context: int | str | None = None,
1077
- undo: bool | None = None,
1078
- /,
1079
- *,
1080
- direction: typing.Literal["POSITIVE", "NEGATIVE"] | None = "POSITIVE",
1081
- precision: int | None = 3,
1082
- ) -> None:
1083
- """Copy mirror UV coordinates on the X axis based on a mirrored mesh
1084
-
1085
- :type execution_context: int | str | None
1086
- :type undo: bool | None
1087
- :param direction: Axis Direction
1088
- :type direction: typing.Literal['POSITIVE','NEGATIVE'] | None
1089
- :param precision: Precision, Tolerance for finding vertex duplicates
1090
- :type precision: int | None
1091
- """
1092
-
1093
1075
  def faces_select_linked_flat(
1094
1076
  execution_context: int | str | None = None,
1095
1077
  undo: bool | None = None,
bpy/ops/node/__init__.pyi CHANGED
@@ -2204,6 +2204,17 @@ def sockets_sync(
2204
2204
  :type node_name: str
2205
2205
  """
2206
2206
 
2207
+ def test_inlining_shader_nodes(
2208
+ execution_context: int | str | None = None,
2209
+ undo: bool | None = None,
2210
+ /,
2211
+ ) -> None:
2212
+ """Create a new inlined shader node tree as is consumed by renderers
2213
+
2214
+ :type execution_context: int | str | None
2215
+ :type undo: bool | None
2216
+ """
2217
+
2207
2218
  def translate_attach(
2208
2219
  execution_context: int | str | None = None,
2209
2220
  undo: bool | None = None,
bpy/ops/uv/__init__.pyi CHANGED
@@ -16,6 +16,7 @@ def align(
16
16
  "ALIGN_S", "ALIGN_T", "ALIGN_U", "ALIGN_AUTO", "ALIGN_X", "ALIGN_Y"
17
17
  ]
18
18
  | None = "ALIGN_AUTO",
19
+ position_mode: typing.Literal["MEAN", "MIN", "MAX"] | None = "MEAN",
19
20
  ) -> None:
20
21
  """Aligns selected UV vertices on a line
21
22
 
@@ -41,6 +42,17 @@ def align(
41
42
  ALIGN_Y
42
43
  Align Horizontally -- Align UV vertices on a horizontal line.
43
44
  :type axis: typing.Literal['ALIGN_S','ALIGN_T','ALIGN_U','ALIGN_AUTO','ALIGN_X','ALIGN_Y'] | None
45
+ :param position_mode: Position Mode, Method of calculating the alignment position
46
+
47
+ MEAN
48
+ Mean -- Align UVs along the mean position.
49
+
50
+ MIN
51
+ Minimum -- Align UVs along the minimum position.
52
+
53
+ MAX
54
+ Maximum -- Align UVs along the maximum position.
55
+ :type position_mode: typing.Literal['MEAN','MIN','MAX'] | None
44
56
  """
45
57
 
46
58
  def align_rotation(
@@ -179,6 +191,24 @@ def copy(
179
191
  :type undo: bool | None
180
192
  """
181
193
 
194
+ def copy_mirrored_faces(
195
+ execution_context: int | str | None = None,
196
+ undo: bool | None = None,
197
+ /,
198
+ *,
199
+ direction: typing.Literal["POSITIVE", "NEGATIVE"] | None = "POSITIVE",
200
+ precision: int | None = 3,
201
+ ) -> None:
202
+ """Copy mirror UV coordinates on the X axis based on a mirrored mesh
203
+
204
+ :type execution_context: int | str | None
205
+ :type undo: bool | None
206
+ :param direction: Axis Direction
207
+ :type direction: typing.Literal['POSITIVE','NEGATIVE'] | None
208
+ :param precision: Precision, Tolerance for finding vertex duplicates
209
+ :type precision: int | None
210
+ """
211
+
182
212
  def cube_project(
183
213
  execution_context: int | str | None = None,
184
214
  undo: bool | None = None,
bpy/types/__init__.pyi CHANGED
@@ -261539,6 +261539,8 @@ DOPESHEET_MT_view: bl_ui.space_dopesheet.DOPESHEET_MT_view
261539
261539
 
261540
261540
  DOPESHEET_MT_view_pie: bl_ui.space_dopesheet.DOPESHEET_MT_view_pie
261541
261541
 
261542
+ DOPESHEET_PT_ShapeKey: bl_ui.space_dopesheet.DOPESHEET_PT_ShapeKey
261543
+
261542
261544
  DOPESHEET_PT_action: bl_ui.space_dopesheet.DOPESHEET_PT_action
261543
261545
 
261544
261546
  DOPESHEET_PT_action_slot: bl_ui.space_dopesheet.DOPESHEET_PT_action_slot
@@ -263063,6 +263065,8 @@ SEQUENCER_MT_image_transform: bl_ui.space_sequencer.SEQUENCER_MT_image_transform
263063
263065
 
263064
263066
  SEQUENCER_MT_marker: bl_ui.space_sequencer.SEQUENCER_MT_marker
263065
263067
 
263068
+ SEQUENCER_MT_modifier_add: bl_ui.space_sequencer.SEQUENCER_MT_modifier_add
263069
+
263066
263070
  SEQUENCER_MT_navigation: bl_ui.space_sequencer.SEQUENCER_MT_navigation
263067
263071
 
263068
263072
  SEQUENCER_MT_pivot_pie: bl_ui.space_sequencer.SEQUENCER_MT_pivot_pie
@@ -263099,6 +263103,8 @@ SEQUENCER_MT_strip_lock_mute: bl_ui.space_sequencer.SEQUENCER_MT_strip_lock_mute
263099
263103
 
263100
263104
  SEQUENCER_MT_strip_mirror: bl_ui.space_sequencer.SEQUENCER_MT_strip_mirror
263101
263105
 
263106
+ SEQUENCER_MT_strip_modifiers: bl_ui.space_sequencer.SEQUENCER_MT_strip_modifiers
263107
+
263102
263108
  SEQUENCER_MT_strip_movie: bl_ui.space_sequencer.SEQUENCER_MT_strip_movie
263103
263109
 
263104
263110
  SEQUENCER_MT_strip_retiming: bl_ui.space_sequencer.SEQUENCER_MT_strip_retiming
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fake-bpy-module
3
- Version: 20250909
3
+ Version: 20250910
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
@@ -74,7 +74,7 @@ bl_operators/geometry_nodes/__init__.pyi,sha256=bRn2de47mar1BxfXqkOA6R2ZHGfC3Ij1
74
74
  bl_operators/grease_pencil/__init__.pyi,sha256=ppgkc4ZatqPEHJNhjKbEy1sBzJg9zo0sbKbqFGKXMu0,897
75
75
  bl_operators/image/__init__.pyi,sha256=p_Pc5Za8ZGt_7ApR-NiQA94kOBvBdR8uqKiFKZgGMIk,3542
76
76
  bl_operators/image_as_planes/__init__.pyi,sha256=G_h1gkxx6INE8lUl7M0MR9luywsJUraY6T39rVehEio,4804
77
- bl_operators/mesh/__init__.pyi,sha256=LOcnRM3n2V8BeJa49XYer6b71eInogViGk2ohLQuOqw,2516
77
+ bl_operators/mesh/__init__.pyi,sha256=5auCQvi8k_qSvkOgWdTdBqdv9HsrIe0w9ZrFOXfwu9g,1630
78
78
  bl_operators/node/__init__.pyi,sha256=YMxYh5k42rr0QXTPvfcOZ-dov5uZUMwhCkR00fz8vSQ,13711
79
79
  bl_operators/node_editor/__init__.pyi,sha256=nXKuGcFgA7viFPwVoXogOT1iClUnXhtrK_rZTTXJ2Go,136
80
80
  bl_operators/node_editor/node_functions/__init__.pyi,sha256=lvnouyugGqmyzgLR8aRsLj823dK3wC22vEu8lucNhJI,626
@@ -127,7 +127,7 @@ bl_ui/properties_data_grease_pencil/__init__.pyi,sha256=ThgRMg7gSyDCNJODyZkhzFxz
127
127
  bl_ui/properties_data_lattice/__init__.pyi,sha256=4MGkuqbRwOXPwgenvccmKepjTo-UEITPdJa66es97WU,3519
128
128
  bl_ui/properties_data_light/__init__.pyi,sha256=UF9qN23t6arJXqOxHd75qjuDEbDwa2Pz7u2gd3B1uRU,8300
129
129
  bl_ui/properties_data_lightprobe/__init__.pyi,sha256=BNw-GpdEGXO_Y1MEOttD2HjFPnCt6CPM4-SOdcjIVtY,10896
130
- bl_ui/properties_data_mesh/__init__.pyi,sha256=ftOcB4vmYjO3iGPKWinox0XaT1opFMLxVEaE4KcXEcE,16305
130
+ bl_ui/properties_data_mesh/__init__.pyi,sha256=JEEki-7wWoD80nPC8PeGZQFhnU0hlP3tHkDiGcJLTUk,16365
131
131
  bl_ui/properties_data_metaball/__init__.pyi,sha256=ugpE5OO7g02vHx6RIPu6mW6wSbFsDmYqdmIR89G2dtQ,4861
132
132
  bl_ui/properties_data_modifier/__init__.pyi,sha256=GZSuD_K8JigqvUxpmdhWw8xwOBmJwcYuu814WsHsCSo,7028
133
133
  bl_ui/properties_data_pointcloud/__init__.pyi,sha256=c6_fdD-FLjucExBFMO40-J6QPXc4kNN_jWDLlya3-CA,4896
@@ -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=wqemfQF1iBORxWUB3c3gtz2lM91b-V0WV-sGwPObU2E,19291
163
+ bl_ui/space_dopesheet/__init__.pyi,sha256=wUrmn9E4rwDv9N288fXCPyu8oUdT7n0eCFAUTZKsM0w,20020
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
@@ -169,7 +169,7 @@ bl_ui/space_nla/__init__.pyi,sha256=qogAgjcs_TFfi4eoTjkVsPi8GkXRA7s4cO9xip2N-Ss,
169
169
  bl_ui/space_node/__init__.pyi,sha256=tLdl7p5j7C08r_07WCOfmyx2-yLYPKF-lweXPJm1GVI,21996
170
170
  bl_ui/space_outliner/__init__.pyi,sha256=1N93UIu-iU2UkqM7tQxeaxob3PRnnUjqY6rKdnT_sAE,8938
171
171
  bl_ui/space_properties/__init__.pyi,sha256=KJdc80dXfvxv5XYmO8CRmheQxff_jLYiS_6zzRG_xwg,2802
172
- bl_ui/space_sequencer/__init__.pyi,sha256=DoetkimCZUa4UdKuRdfCVvWnEDgLo31soII6ZlY2zTs,58593
172
+ bl_ui/space_sequencer/__init__.pyi,sha256=wBOUN_yIpEYC_jdpr9T6jwGBLR1iUzsdXXSK8NaIEQI,59943
173
173
  bl_ui/space_spreadsheet/__init__.pyi,sha256=qoO65GoJn8WObsqXqRzdEq2Zq1AZQEDWVpli-4lXOow,1769
174
174
  bl_ui/space_statusbar/__init__.pyi,sha256=V-oUoxSsgIpi-jzqct_gz2vjFYkIqOffmuI4W7xlsbw,667
175
175
  bl_ui/space_text/__init__.pyi,sha256=k864SRJgY7mgqqsu8KAhNGilMHMgMzjew1aeEHTtiYo,8996
@@ -243,9 +243,9 @@ bpy/ops/marker/__init__.pyi,sha256=UgDyXL31VJ4eP6tKMcJ9Ahyp172DGoQwAsTys_EdF1g,5
243
243
  bpy/ops/mask/__init__.pyi,sha256=WuDzL2HNb13UKrtIv-bze436cJSB9Sj5u1Tjc75DrVs,17709
244
244
  bpy/ops/material/__init__.pyi,sha256=7yA8XRBaeLm-2IGqQqXcDGNctp3amhdmBMTPoWHw5G8,774
245
245
  bpy/ops/mball/__init__.pyi,sha256=3avjhyGC4WLxkWeTp16xJjaN3dp05ecbIXJnc2EtXVs,4258
246
- bpy/ops/mesh/__init__.pyi,sha256=jOS4UBLsZrHh24SJH5hJgFl-GDV6HM1PCVSQSjUK8Sw,132537
246
+ bpy/ops/mesh/__init__.pyi,sha256=uSpyzQeJO-79FB5TrQuxek597tOODzbRNRBDb52bTtw,131942
247
247
  bpy/ops/nla/__init__.pyi,sha256=xj5WdhNuTLCf0XbePE1XPiPfS78Ea45lA28gOntmOFI,18812
248
- bpy/ops/node/__init__.pyi,sha256=wz_5UIzSRm3AsL9LMAQGvOrVdx7vemAZDlhR76brKYA,66591
248
+ bpy/ops/node/__init__.pyi,sha256=A5s_VFdHbjMDYfq9rA3J8wd97Bmx5oL3gEu9j9QAkjs,66876
249
249
  bpy/ops/object/__init__.pyi,sha256=Ll59LJ8RY-R_my_-dUYTGYuzLmlpUJETY58gLXrfv7I,172971
250
250
  bpy/ops/outliner/__init__.pyi,sha256=ynP3AYcSIvRaROgjkuUMwL2F5P085Q_VVOZjhVC4VeY,29325
251
251
  bpy/ops/paint/__init__.pyi,sha256=14ik0wFRdTfSOMWb-ZQBc5FLHtq8xFeGiLMqrmtj374,38326
@@ -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=FJg6pWCSxOug1TbusjLUclh7ylQhQ7v6JQoxLQs7tJE,48710
277
+ bpy/ops/uv/__init__.pyi,sha256=nEYY8GyYV4k9X_LkKskrkE0IiucYxG-PwmEqPO2UCMA,49724
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=gbmCHulqJMjlbmBSE5UXmRDjsUGRsAkrX7iedHQnwo0,5908544
287
+ bpy/types/__init__.pyi,sha256=LXr78z-MX1u4a11BDtpCHwVvAx6FmczOGTrUynVAr3s,5908770
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
@@ -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-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,,
367
+ fake_bpy_module-20250910.dist-info/METADATA,sha256=T-YbIx58oQTrBISD08N3CGrtWJzxMJh98ull6om53V0,7429
368
+ fake_bpy_module-20250910.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
369
+ fake_bpy_module-20250910.dist-info/top_level.txt,sha256=E_sehFLnpWSq252JjlyGL1A-1xsWTYcqyOIlHfuOh28,515
370
+ fake_bpy_module-20250910.dist-info/RECORD,,