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

@@ -96,7 +96,6 @@ class UnifiedPaintPanel:
96
96
  unified_name=None,
97
97
  pressure_name=None,
98
98
  curve_visibility_name=None,
99
- icon="NONE",
100
99
  text=None,
101
100
  slider=False,
102
101
  header=False,
@@ -113,7 +112,6 @@ class UnifiedPaintPanel:
113
112
  :param unified_name:
114
113
  :param pressure_name:
115
114
  :param curve_visibility_name:
116
- :param icon:
117
115
  :param text:
118
116
  :param slider:
119
117
  :param header:
@@ -880,42 +880,6 @@ class NODE_PT_node_tree_interface(_bpy_types.Panel):
880
880
  :param context:
881
881
  """
882
882
 
883
- class NODE_PT_node_tree_interface_panel_toggle(_bpy_types.Panel):
884
- bl_category: typing.Any
885
- bl_label: typing.Any
886
- bl_parent_id: typing.Any
887
- bl_region_type: typing.Any
888
- bl_rna: typing.Any
889
- bl_space_type: typing.Any
890
- id_data: typing.Any
891
-
892
- def bl_rna_get_subclass(self) -> bpy.types.Struct:
893
- """
894
-
895
- :return: The RNA type or default when not found.
896
- :rtype: bpy.types.Struct
897
- """
898
-
899
- def bl_rna_get_subclass_py(self) -> typing.Any:
900
- """
901
-
902
- :return: The class or default when not found.
903
- :rtype: typing.Any
904
- """
905
-
906
- def draw(self, context) -> None:
907
- """
908
-
909
- :param context:
910
- """
911
-
912
- @classmethod
913
- def poll(cls, context) -> None:
914
- """
915
-
916
- :param context:
917
- """
918
-
919
883
  class NODE_PT_node_tree_properties(_bpy_types.Panel):
920
884
  bl_category: typing.Any
921
885
  bl_label: typing.Any
bmesh/types/__init__.pyi CHANGED
@@ -116,17 +116,11 @@ class BMEdge:
116
116
  :type: bool
117
117
  """
118
118
 
119
- link_faces: BMElemSeq[BMFace]
120
- """ Faces connected to this edge, (read-only).
119
+ link_faces: typing.Any
120
+ """ Faces connected to this edge, (read-only)."""
121
121
 
122
- :type: BMElemSeq[BMFace]
123
- """
124
-
125
- link_loops: BMElemSeq[BMLoop]
126
- """ Loops connected to this edge, (read-only).
127
-
128
- :type: BMElemSeq[BMLoop]
129
- """
122
+ link_loops: typing.Any
123
+ """ Loops connected to this edge, (read-only)."""
130
124
 
131
125
  seam: bool
132
126
  """ Seam for UV unwrapping.
@@ -152,11 +146,8 @@ class BMEdge:
152
146
  :type: bool
153
147
  """
154
148
 
155
- verts: BMElemSeq[BMVert]
156
- """ Verts this edge uses (always 2), (read-only).
157
-
158
- :type: BMElemSeq[BMVert]
159
- """
149
+ verts: typing.Any
150
+ """ Verts this edge uses (always 2), (read-only)."""
160
151
 
161
152
  def calc_face_angle(self, fallback: typing.Any | None = None) -> float:
162
153
  """
@@ -311,7 +302,7 @@ class BMEdgeSeq:
311
302
  reverse: bool = False,
312
303
  ) -> None:
313
304
  """Sort the elements of this sequence, using an optional custom sort key.
314
- Indices of elements are not changed, `BMElemSeq.index_update` can be used for that.
305
+ Indices of elements are not changed, `bmesh.types.BMElemSeq.index_update` can be used for that.
315
306
 
316
307
  :param key: The key that sets the ordering of the elements.
317
308
  :type key: None | collections.abc.Callable[[BMVert | BMEdge | BMFace], int] | None
@@ -388,7 +379,7 @@ class BMEditSelSeq:
388
379
 
389
380
  class BMElemSeq[_GenericType1]:
390
381
  """General sequence type used for accessing any sequence of
391
- `BMVert`, `BMEdge`, `BMFace`, `BMLoop`.When accessed via `BMesh.verts`, `BMesh.edges`, `BMesh.faces`
382
+ `bmesh.types.BMVert`, `bmesh.types.BMEdge`, `bmesh.types.BMFace`, `bmesh.types.BMLoop`.When accessed via `bmesh.types.BMesh.verts`, `bmesh.types.BMesh.edges`, `bmesh.types.BMesh.faces`
392
383
  there are also functions to create/remove items.
393
384
  """
394
385
 
@@ -432,11 +423,8 @@ class BMElemSeq[_GenericType1]:
432
423
  class BMFace:
433
424
  """The BMesh face with 3 or more sides"""
434
425
 
435
- edges: BMElemSeq[BMEdge]
436
- """ Edges of this face, (read-only).
437
-
438
- :type: BMElemSeq[BMEdge]
439
- """
426
+ edges: typing.Any
427
+ """ Edges of this face, (read-only)."""
440
428
 
441
429
  hide: bool
442
430
  """ Hidden state of this element.
@@ -456,11 +444,8 @@ class BMFace:
456
444
  :type: bool
457
445
  """
458
446
 
459
- loops: BMElemSeq[BMLoop]
460
- """ Loops of this face, (read-only).
461
-
462
- :type: BMElemSeq[BMLoop]
463
- """
447
+ loops: typing.Any
448
+ """ Loops of this face, (read-only)."""
464
449
 
465
450
  material_index: int
466
451
  """ The face's material index.
@@ -492,11 +477,8 @@ class BMFace:
492
477
  :type: bool
493
478
  """
494
479
 
495
- verts: BMElemSeq[BMVert]
496
- """ Verts of this face, (read-only).
497
-
498
- :type: BMElemSeq[BMVert]
499
- """
480
+ verts: typing.Any
481
+ """ Verts of this face, (read-only)."""
500
482
 
501
483
  def calc_area(self) -> float:
502
484
  """Return the area of the face.
@@ -702,7 +684,7 @@ class BMFaceSeq:
702
684
  reverse: bool = False,
703
685
  ) -> None:
704
686
  """Sort the elements of this sequence, using an optional custom sort key.
705
- Indices of elements are not changed, `BMElemSeq.index_update` can be used for that.
687
+ Indices of elements are not changed, `bmesh.types.BMElemSeq.index_update` can be used for that.
706
688
 
707
689
  :param key: The key that sets the ordering of the elements.
708
690
  :type key: None | collections.abc.Callable[[BMVert | BMEdge | BMFace], int] | None
@@ -746,7 +728,7 @@ class BMFaceSeq:
746
728
 
747
729
  class BMIter[_GenericType1]:
748
730
  """Internal BMesh type for looping over verts/faces/edges,
749
- used for iterating over `BMElemSeq` types.
731
+ used for iterating over `bmesh.types.BMElemSeq` types.
750
732
  """
751
733
 
752
734
  def __iter__(self) -> BMIter[_GenericType1]:
@@ -766,203 +748,110 @@ class BMIter[_GenericType1]:
766
748
  class BMLayerAccessEdge:
767
749
  """Exposes custom-data layer attributes."""
768
750
 
769
- bool: BMLayerCollection[boolean]
770
- """ Generic boolean custom-data layer.
771
-
772
- :type: BMLayerCollection[boolean]
773
- """
774
-
775
- color: BMLayerCollection[mathutils.Vector]
776
- """ Generic RGBA color with 8-bit precision custom-data layer.
777
-
778
- :type: BMLayerCollection[mathutils.Vector]
779
- """
780
-
781
- float: BMLayerCollection[float]
782
- """ Generic float custom-data layer.
783
-
784
- :type: BMLayerCollection[float]
785
- """
786
-
787
- float_color: BMLayerCollection[mathutils.Vector]
788
- """ Generic RGBA color with float precision custom-data layer.
751
+ bool: typing.Any
752
+ """ Generic boolean custom-data layer."""
789
753
 
790
- :type: BMLayerCollection[mathutils.Vector]
791
- """
792
-
793
- float_vector: BMLayerCollection[mathutils.Vector]
794
- """ Generic 3D vector with float precision custom-data layer.
754
+ color: typing.Any
755
+ """ Generic RGBA color with 8-bit precision custom-data layer."""
795
756
 
796
- :type: BMLayerCollection[mathutils.Vector]
797
- """
757
+ float: typing.Any
758
+ """ Generic float custom-data layer."""
798
759
 
799
- int: BMLayerCollection[int]
800
- """ Generic int custom-data layer.
760
+ float_color: typing.Any
761
+ """ Generic RGBA color with float precision custom-data layer."""
801
762
 
802
- :type: BMLayerCollection[int]
803
- """
763
+ float_vector: typing.Any
764
+ """ Generic 3D vector with float precision custom-data layer."""
804
765
 
805
- string: BMLayerCollection[bytes]
806
- """ Generic string custom-data layer (exposed as bytes, 255 max length).
766
+ int: typing.Any
767
+ """ Generic int custom-data layer."""
807
768
 
808
- :type: BMLayerCollection[bytes]
809
- """
769
+ string: typing.Any
770
+ """ Generic string custom-data layer (exposed as bytes, 255 max length)."""
810
771
 
811
772
  class BMLayerAccessFace:
812
773
  """Exposes custom-data layer attributes."""
813
774
 
814
- bool: BMLayerCollection[boolean]
815
- """ Generic boolean custom-data layer.
775
+ bool: typing.Any
776
+ """ Generic boolean custom-data layer."""
816
777
 
817
- :type: BMLayerCollection[boolean]
818
- """
778
+ color: typing.Any
779
+ """ Generic RGBA color with 8-bit precision custom-data layer."""
819
780
 
820
- color: BMLayerCollection[mathutils.Vector]
821
- """ Generic RGBA color with 8-bit precision custom-data layer.
781
+ float: typing.Any
782
+ """ Generic float custom-data layer."""
822
783
 
823
- :type: BMLayerCollection[mathutils.Vector]
824
- """
825
-
826
- float: BMLayerCollection[float]
827
- """ Generic float custom-data layer.
784
+ float_color: typing.Any
785
+ """ Generic RGBA color with float precision custom-data layer."""
828
786
 
829
- :type: BMLayerCollection[float]
830
- """
787
+ float_vector: typing.Any
788
+ """ Generic 3D vector with float precision custom-data layer."""
831
789
 
832
- float_color: BMLayerCollection[mathutils.Vector]
833
- """ Generic RGBA color with float precision custom-data layer.
834
-
835
- :type: BMLayerCollection[mathutils.Vector]
836
- """
790
+ int: typing.Any
791
+ """ Generic int custom-data layer."""
837
792
 
838
- float_vector: BMLayerCollection[mathutils.Vector]
839
- """ Generic 3D vector with float precision custom-data layer.
840
-
841
- :type: BMLayerCollection[mathutils.Vector]
842
- """
843
-
844
- int: BMLayerCollection[int]
845
- """ Generic int custom-data layer.
846
-
847
- :type: BMLayerCollection[int]
848
- """
849
-
850
- string: BMLayerCollection[bytes]
851
- """ Generic string custom-data layer (exposed as bytes, 255 max length).
852
-
853
- :type: BMLayerCollection[bytes]
854
- """
793
+ string: typing.Any
794
+ """ Generic string custom-data layer (exposed as bytes, 255 max length)."""
855
795
 
856
796
  class BMLayerAccessLoop:
857
797
  """Exposes custom-data layer attributes."""
858
798
 
859
- bool: BMLayerCollection[boolean]
860
- """ Generic boolean custom-data layer.
861
-
862
- :type: BMLayerCollection[boolean]
863
- """
864
-
865
- color: BMLayerCollection[mathutils.Vector]
866
- """ Generic RGBA color with 8-bit precision custom-data layer.
867
-
868
- :type: BMLayerCollection[mathutils.Vector]
869
- """
799
+ bool: typing.Any
800
+ """ Generic boolean custom-data layer."""
870
801
 
871
- float: BMLayerCollection[float]
872
- """ Generic float custom-data layer.
802
+ color: typing.Any
803
+ """ Generic RGBA color with 8-bit precision custom-data layer."""
873
804
 
874
- :type: BMLayerCollection[float]
875
- """
805
+ float: typing.Any
806
+ """ Generic float custom-data layer."""
876
807
 
877
- float_color: BMLayerCollection[mathutils.Vector]
878
- """ Generic RGBA color with float precision custom-data layer.
808
+ float_color: typing.Any
809
+ """ Generic RGBA color with float precision custom-data layer."""
879
810
 
880
- :type: BMLayerCollection[mathutils.Vector]
881
- """
811
+ float_vector: typing.Any
812
+ """ Generic 3D vector with float precision custom-data layer."""
882
813
 
883
- float_vector: BMLayerCollection[mathutils.Vector]
884
- """ Generic 3D vector with float precision custom-data layer.
814
+ int: typing.Any
815
+ """ Generic int custom-data layer."""
885
816
 
886
- :type: BMLayerCollection[mathutils.Vector]
887
- """
817
+ string: typing.Any
818
+ """ Generic string custom-data layer (exposed as bytes, 255 max length)."""
888
819
 
889
- int: BMLayerCollection[int]
890
- """ Generic int custom-data layer.
891
-
892
- :type: BMLayerCollection[int]
893
- """
894
-
895
- string: BMLayerCollection[bytes]
896
- """ Generic string custom-data layer (exposed as bytes, 255 max length).
897
-
898
- :type: BMLayerCollection[bytes]
899
- """
900
-
901
- uv: BMLayerCollection[BMLoopUV]
902
- """ Accessor for `BMLoopUV` UV (as a 2D Vector).
903
-
904
- :type: BMLayerCollection[BMLoopUV]
905
- """
820
+ uv: typing.Any
821
+ """ Accessor for `bmesh.types.BMLoopUV` UV (as a 2D Vector)."""
906
822
 
907
823
  class BMLayerAccessVert:
908
824
  """Exposes custom-data layer attributes."""
909
825
 
910
- bool: BMLayerCollection[boolean]
911
- """ Generic boolean custom-data layer.
912
-
913
- :type: BMLayerCollection[boolean]
914
- """
915
-
916
- color: BMLayerCollection[mathutils.Vector]
917
- """ Generic RGBA color with 8-bit precision custom-data layer.
918
-
919
- :type: BMLayerCollection[mathutils.Vector]
920
- """
921
-
922
- deform: BMLayerCollection[BMDeformVert]
923
- """ Vertex deform weight `BMDeformVert` (TODO).
924
-
925
- :type: BMLayerCollection[BMDeformVert]
926
- """
927
-
928
- float: BMLayerCollection[float]
929
- """ Generic float custom-data layer.
826
+ bool: typing.Any
827
+ """ Generic boolean custom-data layer."""
930
828
 
931
- :type: BMLayerCollection[float]
932
- """
829
+ color: typing.Any
830
+ """ Generic RGBA color with 8-bit precision custom-data layer."""
933
831
 
934
- float_color: BMLayerCollection[mathutils.Vector]
935
- """ Generic RGBA color with float precision custom-data layer.
832
+ deform: typing.Any
833
+ """ Vertex deform weight `bmesh.types.BMDeformVert` (TODO)."""
936
834
 
937
- :type: BMLayerCollection[mathutils.Vector]
938
- """
835
+ float: typing.Any
836
+ """ Generic float custom-data layer."""
939
837
 
940
- float_vector: BMLayerCollection[mathutils.Vector]
941
- """ Generic 3D vector with float precision custom-data layer.
838
+ float_color: typing.Any
839
+ """ Generic RGBA color with float precision custom-data layer."""
942
840
 
943
- :type: BMLayerCollection[mathutils.Vector]
944
- """
841
+ float_vector: typing.Any
842
+ """ Generic 3D vector with float precision custom-data layer."""
945
843
 
946
- int: BMLayerCollection[int]
947
- """ Generic int custom-data layer.
844
+ int: typing.Any
845
+ """ Generic int custom-data layer."""
948
846
 
949
- :type: BMLayerCollection[int]
950
- """
951
-
952
- shape: BMLayerCollection[mathutils.Vector]
953
- """ Vertex shape-key absolute location (as a 3D Vector).
954
-
955
- :type: BMLayerCollection[mathutils.Vector]
956
- """
847
+ shape: typing.Any
848
+ """ Vertex shape-key absolute location (as a 3D Vector)."""
957
849
 
958
850
  skin: typing.Any
959
851
  """ Accessor for skin layer."""
960
852
 
961
- string: BMLayerCollection[bytes]
962
- """ Generic string custom-data layer (exposed as bytes, 255 max length).
963
-
964
- :type: BMLayerCollection[bytes]
965
- """
853
+ string: typing.Any
854
+ """ Generic string custom-data layer (exposed as bytes, 255 max length)."""
966
855
 
967
856
  class BMLayerCollection[_GenericType1]:
968
857
  """Gives access to a collection of custom-data layers of the same type and behaves like Python dictionaries, except for the ability to do list like index access."""
@@ -1058,7 +947,7 @@ class BMLayerItem[_GenericType1]:
1058
947
  """
1059
948
 
1060
949
  class BMLoop:
1061
- """This is normally accessed from `BMFace.loops` where each face loop represents a corner of the face."""
950
+ """This is normally accessed from `bmesh.types.BMFace.loops` where each face loop represents a corner of the face."""
1062
951
 
1063
952
  edge: BMEdge
1064
953
  """ The loop's edge (between this loop and the next), (read-only).
@@ -1114,11 +1003,8 @@ class BMLoop:
1114
1003
  :type: typing_extensions.Self
1115
1004
  """
1116
1005
 
1117
- link_loops: BMElemSeq[BMLoop]
1118
- """ Loops connected to this loop, (read-only).
1119
-
1120
- :type: BMElemSeq[BMLoop]
1121
- """
1006
+ link_loops: typing.Any
1007
+ """ Loops connected to this loop, (read-only)."""
1122
1008
 
1123
1009
  tag: bool
1124
1010
  """ Generic attribute scripts can use for own logic
@@ -1316,23 +1202,14 @@ class BMVert:
1316
1202
  :type: bool
1317
1203
  """
1318
1204
 
1319
- link_edges: BMElemSeq[BMEdge]
1320
- """ Edges connected to this vertex (read-only).
1321
-
1322
- :type: BMElemSeq[BMEdge]
1323
- """
1324
-
1325
- link_faces: BMElemSeq[BMFace]
1326
- """ Faces connected to this vertex (read-only).
1205
+ link_edges: typing.Any
1206
+ """ Edges connected to this vertex (read-only)."""
1327
1207
 
1328
- :type: BMElemSeq[BMFace]
1329
- """
1330
-
1331
- link_loops: BMElemSeq[BMLoop]
1332
- """ Loops that use this vertex (read-only).
1208
+ link_faces: typing.Any
1209
+ """ Faces connected to this vertex (read-only)."""
1333
1210
 
1334
- :type: BMElemSeq[BMLoop]
1335
- """
1211
+ link_loops: typing.Any
1212
+ """ Loops that use this vertex (read-only)."""
1336
1213
 
1337
1214
  normal: mathutils.Vector
1338
1215
  """ The normal for this vertex as a 3D, wrapped vector.
@@ -1491,7 +1368,7 @@ class BMVertSeq:
1491
1368
  reverse: bool = False,
1492
1369
  ) -> None:
1493
1370
  """Sort the elements of this sequence, using an optional custom sort key.
1494
- Indices of elements are not changed, `BMElemSeq.index_update` can be used for that.
1371
+ Indices of elements are not changed, `bmesh.types.BMElemSeq.index_update` can be used for that.
1495
1372
 
1496
1373
  :param key: The key that sets the ordering of the elements.
1497
1374
  :type key: None | collections.abc.Callable[[BMVert | BMEdge | BMFace], int] | None
@@ -1572,11 +1449,8 @@ class BMesh:
1572
1449
  :type: BMEditSelSeq
1573
1450
  """
1574
1451
 
1575
- select_mode: set
1576
- """ The selection mode, values can be {'VERT', 'EDGE', 'FACE'}, cannot be assigned an empty set.
1577
-
1578
- :type: set
1579
- """
1452
+ select_mode: typing.Any
1453
+ """ The selection mode, cannot be assigned an empty set."""
1580
1454
 
1581
1455
  verts: BMVertSeq
1582
1456
  """ This meshes vert sequence (read-only).
@@ -1670,7 +1544,7 @@ class BMesh:
1670
1544
  """
1671
1545
 
1672
1546
  def select_flush_mode(self) -> None:
1673
- """flush selection based on the current mode current `BMesh.select_mode`."""
1547
+ """flush selection based on the current mode current `bmesh.types.BMesh.select_mode`."""
1674
1548
 
1675
1549
  def to_mesh(self, mesh: bpy.types.Mesh) -> None:
1676
1550
  """Writes this BMesh data into an existing Mesh data-block.
@@ -1690,5 +1564,5 @@ class BMesh:
1690
1564
 
1691
1565
  :param matrix: 4x4x transform matrix.
1692
1566
  :type matrix: collections.abc.Sequence[collections.abc.Sequence[float]] | mathutils.Matrix
1693
- :param filter: set of values in (SELECT, HIDE, SEAM, SMOOTH, TAG).
1567
+ :param filter: Flag to filter vertices..
1694
1568
  """
bpy/ops/node/__init__.pyi CHANGED
@@ -992,6 +992,17 @@ def duplicate(
992
992
  :type linked: bool | None
993
993
  """
994
994
 
995
+ def duplicate_compositing_node_group(
996
+ execution_context: int | str | None = None,
997
+ undo: bool | None = None,
998
+ /,
999
+ ) -> None:
1000
+ """Duplicate the currently assigned compositing node group.
1001
+
1002
+ :type execution_context: int | str | None
1003
+ :type undo: bool | None
1004
+ """
1005
+
995
1006
  def duplicate_move(
996
1007
  execution_context: int | str | None = None,
997
1008
  undo: bool | None = None,
@@ -1190,6 +1201,54 @@ def evaluate_closure_output_item_remove(
1190
1201
  :type node_identifier: int | None
1191
1202
  """
1192
1203
 
1204
+ def field_to_grid_item_add(
1205
+ execution_context: int | str | None = None,
1206
+ undo: bool | None = None,
1207
+ /,
1208
+ *,
1209
+ node_identifier: int | None = 0,
1210
+ ) -> None:
1211
+ """Add item below active item
1212
+
1213
+ :type execution_context: int | str | None
1214
+ :type undo: bool | None
1215
+ :param node_identifier: Node Identifier, Optional identifier of the node to operate on
1216
+ :type node_identifier: int | None
1217
+ """
1218
+
1219
+ def field_to_grid_item_move(
1220
+ execution_context: int | str | None = None,
1221
+ undo: bool | None = None,
1222
+ /,
1223
+ *,
1224
+ direction: typing.Literal["UP", "DOWN"] | None = "UP",
1225
+ node_identifier: int | None = 0,
1226
+ ) -> None:
1227
+ """Move active item
1228
+
1229
+ :type execution_context: int | str | None
1230
+ :type undo: bool | None
1231
+ :param direction: Direction, Move direction
1232
+ :type direction: typing.Literal['UP','DOWN'] | None
1233
+ :param node_identifier: Node Identifier, Optional identifier of the node to operate on
1234
+ :type node_identifier: int | None
1235
+ """
1236
+
1237
+ def field_to_grid_item_remove(
1238
+ execution_context: int | str | None = None,
1239
+ undo: bool | None = None,
1240
+ /,
1241
+ *,
1242
+ node_identifier: int | None = 0,
1243
+ ) -> None:
1244
+ """Remove active item
1245
+
1246
+ :type execution_context: int | str | None
1247
+ :type undo: bool | None
1248
+ :param node_identifier: Node Identifier, Optional identifier of the node to operate on
1249
+ :type node_identifier: int | None
1250
+ """
1251
+
1193
1252
  def file_output_item_add(
1194
1253
  execution_context: int | str | None = None,
1195
1254
  undo: bool | None = None,
@@ -1515,6 +1574,17 @@ def group_edit(
1515
1574
  :type exit: bool | None
1516
1575
  """
1517
1576
 
1577
+ def group_enter_exit(
1578
+ execution_context: int | str | None = None,
1579
+ undo: bool | None = None,
1580
+ /,
1581
+ ) -> None:
1582
+ """Enter or exit node group based on cursor location
1583
+
1584
+ :type execution_context: int | str | None
1585
+ :type undo: bool | None
1586
+ """
1587
+
1518
1588
  def group_insert(
1519
1589
  execution_context: int | str | None = None,
1520
1590
  undo: bool | None = None,
@@ -1534,7 +1534,7 @@ def geometry_node_tree_copy_assign(
1534
1534
  undo: bool | None = None,
1535
1535
  /,
1536
1536
  ) -> None:
1537
- """Copy the active geometry node group and assign it to the active modifier
1537
+ """Duplicate the active geometry node group and assign it to the active modifier
1538
1538
 
1539
1539
  :type execution_context: int | str | None
1540
1540
  :type undo: bool | None
@@ -101,28 +101,6 @@ def blend_pose_asset(
101
101
  :type release_confirm: bool | None
102
102
  """
103
103
 
104
- def convert_old_object_poselib(
105
- execution_context: int | str | None = None,
106
- undo: bool | None = None,
107
- /,
108
- ) -> None:
109
- """Create a pose asset for each pose marker in this legacy pose library data-block
110
-
111
- :type execution_context: int | str | None
112
- :type undo: bool | None
113
- """
114
-
115
- def convert_old_poselib(
116
- execution_context: int | str | None = None,
117
- undo: bool | None = None,
118
- /,
119
- ) -> None:
120
- """Create a pose asset for each pose marker in the current action
121
-
122
- :type execution_context: int | str | None
123
- :type undo: bool | None
124
- """
125
-
126
104
  def copy_as_asset(
127
105
  execution_context: int | str | None = None,
128
106
  undo: bool | None = None,