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

Files changed (119) hide show
  1. _bpy_internal/__init__.pyi +1 -0
  2. _bpy_internal/addons/__init__.pyi +7 -0
  3. _bpy_internal/addons/cli/__init__.pyi +8 -0
  4. _bpy_internal/extensions/wheel_manager/__init__.pyi +1 -1
  5. _bpy_internal/freedesktop/__init__.pyi +1 -1
  6. addon_utils/__init__.pyi +6 -5
  7. bl_app_override/__init__.pyi +2 -1
  8. bl_app_template_utils/__init__.pyi +4 -4
  9. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +1 -1
  10. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -2
  11. bl_console_utils/autocomplete/intellisense/__init__.pyi +3 -1
  12. bl_keymap_utils/io/__init__.pyi +4 -2
  13. bl_keymap_utils/keymap_from_toolbar/__init__.pyi +1 -1
  14. bl_keymap_utils/platform_helpers/__init__.pyi +1 -1
  15. bl_operators/__init__.pyi +1 -0
  16. bl_operators/add_mesh_torus/__init__.pyi +1 -1
  17. bl_operators/anim/__init__.pyi +8 -8
  18. bl_operators/assets/__init__.pyi +3 -3
  19. bl_operators/bone_selection_sets/__init__.pyi +2986 -0
  20. bl_operators/clip/__init__.pyi +11 -11
  21. bl_operators/connect_to_output/__init__.pyi +1 -1
  22. bl_operators/console/__init__.pyi +5 -5
  23. bl_operators/constraint/__init__.pyi +4 -4
  24. bl_operators/file/__init__.pyi +3 -3
  25. bl_operators/freestyle/__init__.pyi +4 -4
  26. bl_operators/geometry_nodes/__init__.pyi +4 -4
  27. bl_operators/image/__init__.pyi +4 -4
  28. bl_operators/image_as_planes/__init__.pyi +2 -2
  29. bl_operators/mesh/__init__.pyi +3 -3
  30. bl_operators/node/__init__.pyi +8 -8
  31. bl_operators/object/__init__.pyi +15 -15
  32. bl_operators/object_align/__init__.pyi +1 -1
  33. bl_operators/object_quick_effects/__init__.pyi +4 -4
  34. bl_operators/object_randomize_transform/__init__.pyi +1 -1
  35. bl_operators/presets/__init__.pyi +25 -23
  36. bl_operators/rigidbody/__init__.pyi +3 -3
  37. bl_operators/screen_play_rendered_anim/__init__.pyi +1 -1
  38. bl_operators/sequencer/__init__.pyi +5 -5
  39. bl_operators/spreadsheet/__init__.pyi +1 -1
  40. bl_operators/userpref/__init__.pyi +25 -25
  41. bl_operators/uvcalc_follow_active/__init__.pyi +1 -1
  42. bl_operators/uvcalc_lightmap/__init__.pyi +2 -2
  43. bl_operators/uvcalc_transform/__init__.pyi +2 -2
  44. bl_operators/vertexpaint_dirt/__init__.pyi +1 -1
  45. bl_operators/view3d/__init__.pyi +5 -5
  46. bl_operators/wm/__init__.pyi +46 -42
  47. bl_operators/world/__init__.pyi +1 -1
  48. bl_ui/__init__.pyi +2 -0
  49. bl_ui/anim/__init__.pyi +1 -0
  50. bl_ui/generic_ui_list/__init__.pyi +5 -4
  51. bl_ui/node_add_menu/__init__.pyi +2 -1
  52. bl_ui/node_add_menu_compositor/__init__.pyi +18 -0
  53. bl_ui/node_add_menu_geometry/__init__.pyi +321 -0
  54. bl_ui/node_add_menu_shader/__init__.pyi +10 -0
  55. bl_ui/node_add_menu_texture/__init__.pyi +9 -0
  56. bl_ui/properties_collection/__init__.pyi +1 -0
  57. bl_ui/properties_data_armature/__init__.pyi +1273 -0
  58. bl_ui/properties_data_camera/__init__.pyi +2 -0
  59. bl_ui/properties_data_curves/__init__.pyi +1 -0
  60. bl_ui/properties_data_gpencil/__init__.pyi +2 -0
  61. bl_ui/properties_data_grease_pencil/__init__.pyi +3 -0
  62. bl_ui/properties_data_mesh/__init__.pyi +4 -0
  63. bl_ui/properties_data_modifier/__init__.pyi +8 -1
  64. bl_ui/properties_data_pointcloud/__init__.pyi +1 -0
  65. bl_ui/properties_freestyle/__init__.pyi +1 -0
  66. bl_ui/properties_grease_pencil_common/__init__.pyi +13 -1
  67. bl_ui/properties_mask_common/__init__.pyi +6 -0
  68. bl_ui/properties_material/__init__.pyi +1 -0
  69. bl_ui/properties_material_gpencil/__init__.pyi +2 -0
  70. bl_ui/properties_object/__init__.pyi +1 -0
  71. bl_ui/properties_output/__init__.pyi +3 -0
  72. bl_ui/properties_paint_common/__init__.pyi +48 -17
  73. bl_ui/properties_particle/__init__.pyi +2 -0
  74. bl_ui/properties_physics_cloth/__init__.pyi +1 -0
  75. bl_ui/properties_physics_fluid/__init__.pyi +1 -0
  76. bl_ui/properties_render/__init__.pyi +2 -0
  77. bl_ui/properties_texture/__init__.pyi +1 -0
  78. bl_ui/properties_view_layer/__init__.pyi +1 -0
  79. bl_ui/space_clip/__init__.pyi +31 -0
  80. bl_ui/space_console/__init__.pyi +5 -0
  81. bl_ui/space_dopesheet/__init__.pyi +14 -0
  82. bl_ui/space_filebrowser/__init__.pyi +13 -0
  83. bl_ui/space_graph/__init__.pyi +16 -0
  84. bl_ui/space_image/__init__.pyi +313 -11
  85. bl_ui/space_info/__init__.pyi +5 -0
  86. bl_ui/space_nla/__init__.pyi +13 -0
  87. bl_ui/space_node/__init__.pyi +12 -0
  88. bl_ui/space_outliner/__init__.pyi +12 -0
  89. bl_ui/space_sequencer/__init__.pyi +34 -0
  90. bl_ui/space_text/__init__.pyi +12 -0
  91. bl_ui/space_time/__init__.pyi +4 -0
  92. bl_ui/space_toolsystem_common/__init__.pyi +7 -6
  93. bl_ui/space_toolsystem_toolbar/__init__.pyi +18 -14
  94. bl_ui/space_topbar/__init__.pyi +20 -1
  95. bl_ui/space_userpref/__init__.pyi +8 -0
  96. bl_ui/space_view3d/__init__.pyi +3477 -1372
  97. bl_ui/space_view3d_toolbar/__init__.pyi +1706 -880
  98. bl_ui/utils/__init__.pyi +1 -0
  99. bl_ui_utils/bug_report_url/__init__.pyi +1 -1
  100. bpy/ops/brush/__init__.pyi +185 -11
  101. bpy/ops/extensions/__init__.pyi +15 -1
  102. bpy/ops/gpencil/__init__.pyi +0 -28
  103. bpy/ops/paint/__init__.pyi +0 -48
  104. bpy/ops/pose/__init__.pyi +176 -0
  105. bpy/ops/wm/__init__.pyi +18 -0
  106. bpy/path/__init__.pyi +6 -6
  107. bpy/types/__init__.pyi +30763 -28505
  108. bpy/utils/__init__.pyi +14 -12
  109. bpy_extras/anim_utils/__init__.pyi +3 -3
  110. bpy_extras/view3d_utils/__init__.pyi +2 -0
  111. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240711.dist-info}/METADATA +1 -1
  112. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240711.dist-info}/RECORD +119 -116
  113. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240711.dist-info}/WHEEL +1 -1
  114. freestyle/utils/__init__.pyi +1 -1
  115. mathutils/__init__.pyi +1687 -679
  116. rna_info/__init__.pyi +1 -0
  117. rna_prop_ui/__init__.pyi +2 -1
  118. rna_xml/__init__.pyi +2 -2
  119. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240711.dist-info}/top_level.txt +0 -0
@@ -413,6 +413,7 @@ class CLIP_MT_clip(bpy_types._GenericUI):
413
413
  self,
414
414
  searchpaths: list[str],
415
415
  operator: str,
416
+ *,
416
417
  props_default: dict = None,
417
418
  prop_filepath: str | None = "filepath",
418
419
  filter_ext: collections.abc.Callable | None = None,
@@ -683,6 +684,7 @@ class CLIP_MT_marker_pie(bpy_types._GenericUI):
683
684
  self,
684
685
  searchpaths: list[str],
685
686
  operator: str,
687
+ *,
686
688
  props_default: dict = None,
687
689
  prop_filepath: str | None = "filepath",
688
690
  filter_ext: collections.abc.Callable | None = None,
@@ -961,6 +963,7 @@ class CLIP_MT_masking_editor_menus(bpy_types._GenericUI):
961
963
  self,
962
964
  searchpaths: list[str],
963
965
  operator: str,
966
+ *,
964
967
  props_default: dict = None,
965
968
  prop_filepath: str | None = "filepath",
966
969
  filter_ext: collections.abc.Callable | None = None,
@@ -1231,6 +1234,7 @@ class CLIP_MT_pivot_pie(bpy_types._GenericUI):
1231
1234
  self,
1232
1235
  searchpaths: list[str],
1233
1236
  operator: str,
1237
+ *,
1234
1238
  props_default: dict = None,
1235
1239
  prop_filepath: str | None = "filepath",
1236
1240
  filter_ext: collections.abc.Callable | None = None,
@@ -1501,6 +1505,7 @@ class CLIP_MT_plane_track_image_context_menu(bpy_types._GenericUI):
1501
1505
  self,
1502
1506
  searchpaths: list[str],
1503
1507
  operator: str,
1508
+ *,
1504
1509
  props_default: dict = None,
1505
1510
  prop_filepath: str | None = "filepath",
1506
1511
  filter_ext: collections.abc.Callable | None = None,
@@ -1771,6 +1776,7 @@ class CLIP_MT_proxy(bpy_types._GenericUI):
1771
1776
  self,
1772
1777
  searchpaths: list[str],
1773
1778
  operator: str,
1779
+ *,
1774
1780
  props_default: dict = None,
1775
1781
  prop_filepath: str | None = "filepath",
1776
1782
  filter_ext: collections.abc.Callable | None = None,
@@ -2041,6 +2047,7 @@ class CLIP_MT_reconstruction(bpy_types._GenericUI):
2041
2047
  self,
2042
2048
  searchpaths: list[str],
2043
2049
  operator: str,
2050
+ *,
2044
2051
  props_default: dict = None,
2045
2052
  prop_filepath: str | None = "filepath",
2046
2053
  filter_ext: collections.abc.Callable | None = None,
@@ -2311,6 +2318,7 @@ class CLIP_MT_reconstruction_pie(bpy_types._GenericUI):
2311
2318
  self,
2312
2319
  searchpaths: list[str],
2313
2320
  operator: str,
2321
+ *,
2314
2322
  props_default: dict = None,
2315
2323
  prop_filepath: str | None = "filepath",
2316
2324
  filter_ext: collections.abc.Callable | None = None,
@@ -2588,6 +2596,7 @@ class CLIP_MT_select(bpy_types._GenericUI):
2588
2596
  self,
2589
2597
  searchpaths: list[str],
2590
2598
  operator: str,
2599
+ *,
2591
2600
  props_default: dict = None,
2592
2601
  prop_filepath: str | None = "filepath",
2593
2602
  filter_ext: collections.abc.Callable | None = None,
@@ -2858,6 +2867,7 @@ class CLIP_MT_select_graph(bpy_types._GenericUI):
2858
2867
  self,
2859
2868
  searchpaths: list[str],
2860
2869
  operator: str,
2870
+ *,
2861
2871
  props_default: dict = None,
2862
2872
  prop_filepath: str | None = "filepath",
2863
2873
  filter_ext: collections.abc.Callable | None = None,
@@ -3128,6 +3138,7 @@ class CLIP_MT_select_grouped(bpy_types._GenericUI):
3128
3138
  self,
3129
3139
  searchpaths: list[str],
3130
3140
  operator: str,
3141
+ *,
3131
3142
  props_default: dict = None,
3132
3143
  prop_filepath: str | None = "filepath",
3133
3144
  filter_ext: collections.abc.Callable | None = None,
@@ -3398,6 +3409,7 @@ class CLIP_MT_solving_pie(bpy_types._GenericUI):
3398
3409
  self,
3399
3410
  searchpaths: list[str],
3400
3411
  operator: str,
3412
+ *,
3401
3413
  props_default: dict = None,
3402
3414
  prop_filepath: str | None = "filepath",
3403
3415
  filter_ext: collections.abc.Callable | None = None,
@@ -3675,6 +3687,7 @@ class CLIP_MT_stabilize_2d_context_menu(bpy_types._GenericUI):
3675
3687
  self,
3676
3688
  searchpaths: list[str],
3677
3689
  operator: str,
3690
+ *,
3678
3691
  props_default: dict = None,
3679
3692
  prop_filepath: str | None = "filepath",
3680
3693
  filter_ext: collections.abc.Callable | None = None,
@@ -3945,6 +3958,7 @@ class CLIP_MT_stabilize_2d_rotation_context_menu(bpy_types._GenericUI):
3945
3958
  self,
3946
3959
  searchpaths: list[str],
3947
3960
  operator: str,
3961
+ *,
3948
3962
  props_default: dict = None,
3949
3963
  prop_filepath: str | None = "filepath",
3950
3964
  filter_ext: collections.abc.Callable | None = None,
@@ -4215,6 +4229,7 @@ class CLIP_MT_track(bpy_types._GenericUI):
4215
4229
  self,
4216
4230
  searchpaths: list[str],
4217
4231
  operator: str,
4232
+ *,
4218
4233
  props_default: dict = None,
4219
4234
  prop_filepath: str | None = "filepath",
4220
4235
  filter_ext: collections.abc.Callable | None = None,
@@ -4485,6 +4500,7 @@ class CLIP_MT_track_animation(bpy_types._GenericUI):
4485
4500
  self,
4486
4501
  searchpaths: list[str],
4487
4502
  operator: str,
4503
+ *,
4488
4504
  props_default: dict = None,
4489
4505
  prop_filepath: str | None = "filepath",
4490
4506
  filter_ext: collections.abc.Callable | None = None,
@@ -4755,6 +4771,7 @@ class CLIP_MT_track_cleanup(bpy_types._GenericUI):
4755
4771
  self,
4756
4772
  searchpaths: list[str],
4757
4773
  operator: str,
4774
+ *,
4758
4775
  props_default: dict = None,
4759
4776
  prop_filepath: str | None = "filepath",
4760
4777
  filter_ext: collections.abc.Callable | None = None,
@@ -5025,6 +5042,7 @@ class CLIP_MT_track_clear(bpy_types._GenericUI):
5025
5042
  self,
5026
5043
  searchpaths: list[str],
5027
5044
  operator: str,
5045
+ *,
5028
5046
  props_default: dict = None,
5029
5047
  prop_filepath: str | None = "filepath",
5030
5048
  filter_ext: collections.abc.Callable | None = None,
@@ -5295,6 +5313,7 @@ class CLIP_MT_track_motion(bpy_types._GenericUI):
5295
5313
  self,
5296
5314
  searchpaths: list[str],
5297
5315
  operator: str,
5316
+ *,
5298
5317
  props_default: dict = None,
5299
5318
  prop_filepath: str | None = "filepath",
5300
5319
  filter_ext: collections.abc.Callable | None = None,
@@ -5565,6 +5584,7 @@ class CLIP_MT_track_refine(bpy_types._GenericUI):
5565
5584
  self,
5566
5585
  searchpaths: list[str],
5567
5586
  operator: str,
5587
+ *,
5568
5588
  props_default: dict = None,
5569
5589
  prop_filepath: str | None = "filepath",
5570
5590
  filter_ext: collections.abc.Callable | None = None,
@@ -5835,6 +5855,7 @@ class CLIP_MT_track_transform(bpy_types._GenericUI):
5835
5855
  self,
5836
5856
  searchpaths: list[str],
5837
5857
  operator: str,
5858
+ *,
5838
5859
  props_default: dict = None,
5839
5860
  prop_filepath: str | None = "filepath",
5840
5861
  filter_ext: collections.abc.Callable | None = None,
@@ -6105,6 +6126,7 @@ class CLIP_MT_track_visibility(bpy_types._GenericUI):
6105
6126
  self,
6106
6127
  searchpaths: list[str],
6107
6128
  operator: str,
6129
+ *,
6108
6130
  props_default: dict = None,
6109
6131
  prop_filepath: str | None = "filepath",
6110
6132
  filter_ext: collections.abc.Callable | None = None,
@@ -6375,6 +6397,7 @@ class CLIP_MT_tracking_context_menu(bpy_types._GenericUI):
6375
6397
  self,
6376
6398
  searchpaths: list[str],
6377
6399
  operator: str,
6400
+ *,
6378
6401
  props_default: dict = None,
6379
6402
  prop_filepath: str | None = "filepath",
6380
6403
  filter_ext: collections.abc.Callable | None = None,
@@ -6653,6 +6676,7 @@ class CLIP_MT_tracking_editor_menus(bpy_types._GenericUI):
6653
6676
  self,
6654
6677
  searchpaths: list[str],
6655
6678
  operator: str,
6679
+ *,
6656
6680
  props_default: dict = None,
6657
6681
  prop_filepath: str | None = "filepath",
6658
6682
  filter_ext: collections.abc.Callable | None = None,
@@ -6924,6 +6948,7 @@ class CLIP_MT_tracking_pie(bpy_types._GenericUI):
6924
6948
  self,
6925
6949
  searchpaths: list[str],
6926
6950
  operator: str,
6951
+ *,
6927
6952
  props_default: dict = None,
6928
6953
  prop_filepath: str | None = "filepath",
6929
6954
  filter_ext: collections.abc.Callable | None = None,
@@ -7201,6 +7226,7 @@ class CLIP_MT_view(bpy_types._GenericUI):
7201
7226
  self,
7202
7227
  searchpaths: list[str],
7203
7228
  operator: str,
7229
+ *,
7204
7230
  props_default: dict = None,
7205
7231
  prop_filepath: str | None = "filepath",
7206
7232
  filter_ext: collections.abc.Callable | None = None,
@@ -7471,6 +7497,7 @@ class CLIP_MT_view_pie(bpy_types._GenericUI):
7471
7497
  self,
7472
7498
  searchpaths: list[str],
7473
7499
  operator: str,
7500
+ *,
7474
7501
  props_default: dict = None,
7475
7502
  prop_filepath: str | None = "filepath",
7476
7503
  filter_ext: collections.abc.Callable | None = None,
@@ -7748,6 +7775,7 @@ class CLIP_MT_view_zoom(bpy_types._GenericUI):
7748
7775
  self,
7749
7776
  searchpaths: list[str],
7750
7777
  operator: str,
7778
+ *,
7751
7779
  props_default: dict = None,
7752
7780
  prop_filepath: str | None = "filepath",
7753
7781
  filter_ext: collections.abc.Callable | None = None,
@@ -8949,6 +8977,7 @@ class CLIP_PT_camera_presets(bl_ui.utils.PresetPanel, bpy_types._GenericUI):
8949
8977
  self,
8950
8978
  searchpaths: list[str],
8951
8979
  operator: str,
8980
+ *,
8952
8981
  props_default: dict = None,
8953
8982
  prop_filepath: str | None = "filepath",
8954
8983
  filter_ext: collections.abc.Callable | None = None,
@@ -15561,6 +15590,7 @@ class CLIP_PT_track_color_presets(bl_ui.utils.PresetPanel, bpy_types._GenericUI)
15561
15590
  self,
15562
15591
  searchpaths: list[str],
15563
15592
  operator: str,
15593
+ *,
15564
15594
  props_default: dict = None,
15565
15595
  prop_filepath: str | None = "filepath",
15566
15596
  filter_ext: collections.abc.Callable | None = None,
@@ -17219,6 +17249,7 @@ class CLIP_PT_tracking_settings_presets(bl_ui.utils.PresetPanel, bpy_types._Gene
17219
17249
  self,
17220
17250
  searchpaths: list[str],
17221
17251
  operator: str,
17252
+ *,
17222
17253
  props_default: dict = None,
17223
17254
  prop_filepath: str | None = "filepath",
17224
17255
  filter_ext: collections.abc.Callable | None = None,
@@ -409,6 +409,7 @@ class CONSOLE_MT_console(bpy_types._GenericUI):
409
409
  self,
410
410
  searchpaths: list[str],
411
411
  operator: str,
412
+ *,
412
413
  props_default: dict = None,
413
414
  prop_filepath: str | None = "filepath",
414
415
  filter_ext: collections.abc.Callable | None = None,
@@ -679,6 +680,7 @@ class CONSOLE_MT_context_menu(bpy_types._GenericUI):
679
680
  self,
680
681
  searchpaths: list[str],
681
682
  operator: str,
683
+ *,
682
684
  props_default: dict = None,
683
685
  prop_filepath: str | None = "filepath",
684
686
  filter_ext: collections.abc.Callable | None = None,
@@ -950,6 +952,7 @@ class CONSOLE_MT_editor_menus(bpy_types._GenericUI):
950
952
  self,
951
953
  searchpaths: list[str],
952
954
  operator: str,
955
+ *,
953
956
  props_default: dict = None,
954
957
  prop_filepath: str | None = "filepath",
955
958
  filter_ext: collections.abc.Callable | None = None,
@@ -1220,6 +1223,7 @@ class CONSOLE_MT_language(bpy_types._GenericUI):
1220
1223
  self,
1221
1224
  searchpaths: list[str],
1222
1225
  operator: str,
1226
+ *,
1223
1227
  props_default: dict = None,
1224
1228
  prop_filepath: str | None = "filepath",
1225
1229
  filter_ext: collections.abc.Callable | None = None,
@@ -1490,6 +1494,7 @@ class CONSOLE_MT_view(bpy_types._GenericUI):
1490
1494
  self,
1491
1495
  searchpaths: list[str],
1492
1496
  operator: str,
1497
+ *,
1493
1498
  props_default: dict = None,
1494
1499
  prop_filepath: str | None = "filepath",
1495
1500
  filter_ext: collections.abc.Callable | None = None,
@@ -421,6 +421,7 @@ class DOPESHEET_MT_channel(bpy_types._GenericUI):
421
421
  self,
422
422
  searchpaths: list[str],
423
423
  operator: str,
424
+ *,
424
425
  props_default: dict = None,
425
426
  prop_filepath: str | None = "filepath",
426
427
  filter_ext: collections.abc.Callable | None = None,
@@ -691,6 +692,7 @@ class DOPESHEET_MT_channel_context_menu(bpy_types._GenericUI):
691
692
  self,
692
693
  searchpaths: list[str],
693
694
  operator: str,
695
+ *,
694
696
  props_default: dict = None,
695
697
  prop_filepath: str | None = "filepath",
696
698
  filter_ext: collections.abc.Callable | None = None,
@@ -961,6 +963,7 @@ class DOPESHEET_MT_context_menu(bpy_types._GenericUI):
961
963
  self,
962
964
  searchpaths: list[str],
963
965
  operator: str,
966
+ *,
964
967
  props_default: dict = None,
965
968
  prop_filepath: str | None = "filepath",
966
969
  filter_ext: collections.abc.Callable | None = None,
@@ -1231,6 +1234,7 @@ class DOPESHEET_MT_delete(bpy_types._GenericUI):
1231
1234
  self,
1232
1235
  searchpaths: list[str],
1233
1236
  operator: str,
1237
+ *,
1234
1238
  props_default: dict = None,
1235
1239
  prop_filepath: str | None = "filepath",
1236
1240
  filter_ext: collections.abc.Callable | None = None,
@@ -1502,6 +1506,7 @@ class DOPESHEET_MT_editor_menus(bpy_types._GenericUI):
1502
1506
  self,
1503
1507
  searchpaths: list[str],
1504
1508
  operator: str,
1509
+ *,
1505
1510
  props_default: dict = None,
1506
1511
  prop_filepath: str | None = "filepath",
1507
1512
  filter_ext: collections.abc.Callable | None = None,
@@ -1772,6 +1777,7 @@ class DOPESHEET_MT_gpencil_channel(bpy_types._GenericUI):
1772
1777
  self,
1773
1778
  searchpaths: list[str],
1774
1779
  operator: str,
1780
+ *,
1775
1781
  props_default: dict = None,
1776
1782
  prop_filepath: str | None = "filepath",
1777
1783
  filter_ext: collections.abc.Callable | None = None,
@@ -2042,6 +2048,7 @@ class DOPESHEET_MT_gpencil_key(bpy_types._GenericUI):
2042
2048
  self,
2043
2049
  searchpaths: list[str],
2044
2050
  operator: str,
2051
+ *,
2045
2052
  props_default: dict = None,
2046
2053
  prop_filepath: str | None = "filepath",
2047
2054
  filter_ext: collections.abc.Callable | None = None,
@@ -2312,6 +2319,7 @@ class DOPESHEET_MT_key(bpy_types._GenericUI):
2312
2319
  self,
2313
2320
  searchpaths: list[str],
2314
2321
  operator: str,
2322
+ *,
2315
2323
  props_default: dict = None,
2316
2324
  prop_filepath: str | None = "filepath",
2317
2325
  filter_ext: collections.abc.Callable | None = None,
@@ -2582,6 +2590,7 @@ class DOPESHEET_MT_key_transform(bpy_types._GenericUI):
2582
2590
  self,
2583
2591
  searchpaths: list[str],
2584
2592
  operator: str,
2593
+ *,
2585
2594
  props_default: dict = None,
2586
2595
  prop_filepath: str | None = "filepath",
2587
2596
  filter_ext: collections.abc.Callable | None = None,
@@ -2852,6 +2861,7 @@ class DOPESHEET_MT_marker(bpy_types._GenericUI):
2852
2861
  self,
2853
2862
  searchpaths: list[str],
2854
2863
  operator: str,
2864
+ *,
2855
2865
  props_default: dict = None,
2856
2866
  prop_filepath: str | None = "filepath",
2857
2867
  filter_ext: collections.abc.Callable | None = None,
@@ -3122,6 +3132,7 @@ class DOPESHEET_MT_select(bpy_types._GenericUI):
3122
3132
  self,
3123
3133
  searchpaths: list[str],
3124
3134
  operator: str,
3135
+ *,
3125
3136
  props_default: dict = None,
3126
3137
  prop_filepath: str | None = "filepath",
3127
3138
  filter_ext: collections.abc.Callable | None = None,
@@ -3392,6 +3403,7 @@ class DOPESHEET_MT_snap_pie(bpy_types._GenericUI):
3392
3403
  self,
3393
3404
  searchpaths: list[str],
3394
3405
  operator: str,
3406
+ *,
3395
3407
  props_default: dict = None,
3396
3408
  prop_filepath: str | None = "filepath",
3397
3409
  filter_ext: collections.abc.Callable | None = None,
@@ -3662,6 +3674,7 @@ class DOPESHEET_MT_view(bpy_types._GenericUI):
3662
3674
  self,
3663
3675
  searchpaths: list[str],
3664
3676
  operator: str,
3677
+ *,
3665
3678
  props_default: dict = None,
3666
3679
  prop_filepath: str | None = "filepath",
3667
3680
  filter_ext: collections.abc.Callable | None = None,
@@ -3932,6 +3945,7 @@ class DOPESHEET_MT_view_pie(bpy_types._GenericUI):
3932
3945
  self,
3933
3946
  searchpaths: list[str],
3934
3947
  operator: str,
3948
+ *,
3935
3949
  props_default: dict = None,
3936
3950
  prop_filepath: str | None = "filepath",
3937
3951
  filter_ext: collections.abc.Callable | None = None,
@@ -194,6 +194,7 @@ class ASSETBROWSER_MT_catalog(AssetBrowserMenu, bpy_types._GenericUI):
194
194
  self,
195
195
  searchpaths: list[str],
196
196
  operator: str,
197
+ *,
197
198
  props_default: dict = None,
198
199
  prop_filepath: str | None = "filepath",
199
200
  filter_ext: collections.abc.Callable | None = None,
@@ -471,6 +472,7 @@ class ASSETBROWSER_MT_context_menu(AssetBrowserMenu, bpy_types._GenericUI):
471
472
  self,
472
473
  searchpaths: list[str],
473
474
  operator: str,
475
+ *,
474
476
  props_default: dict = None,
475
477
  prop_filepath: str | None = "filepath",
476
478
  filter_ext: collections.abc.Callable | None = None,
@@ -749,6 +751,7 @@ class ASSETBROWSER_MT_editor_menus(AssetBrowserMenu, bpy_types._GenericUI):
749
751
  self,
750
752
  searchpaths: list[str],
751
753
  operator: str,
754
+ *,
752
755
  props_default: dict = None,
753
756
  prop_filepath: str | None = "filepath",
754
757
  filter_ext: collections.abc.Callable | None = None,
@@ -1026,6 +1029,7 @@ class ASSETBROWSER_MT_metadata_preview_menu(bpy_types._GenericUI):
1026
1029
  self,
1027
1030
  searchpaths: list[str],
1028
1031
  operator: str,
1032
+ *,
1029
1033
  props_default: dict = None,
1030
1034
  prop_filepath: str | None = "filepath",
1031
1035
  filter_ext: collections.abc.Callable | None = None,
@@ -1296,6 +1300,7 @@ class ASSETBROWSER_MT_select(AssetBrowserMenu, bpy_types._GenericUI):
1296
1300
  self,
1297
1301
  searchpaths: list[str],
1298
1302
  operator: str,
1303
+ *,
1299
1304
  props_default: dict = None,
1300
1305
  prop_filepath: str | None = "filepath",
1301
1306
  filter_ext: collections.abc.Callable | None = None,
@@ -1573,6 +1578,7 @@ class ASSETBROWSER_MT_view(AssetBrowserMenu, bpy_types._GenericUI):
1573
1578
  self,
1574
1579
  searchpaths: list[str],
1575
1580
  operator: str,
1581
+ *,
1576
1582
  props_default: dict = None,
1577
1583
  prop_filepath: str | None = "filepath",
1578
1584
  filter_ext: collections.abc.Callable | None = None,
@@ -3482,6 +3488,7 @@ class FILEBROWSER_MT_bookmarks_context_menu(bpy_types._GenericUI):
3482
3488
  self,
3483
3489
  searchpaths: list[str],
3484
3490
  operator: str,
3491
+ *,
3485
3492
  props_default: dict = None,
3486
3493
  prop_filepath: str | None = "filepath",
3487
3494
  filter_ext: collections.abc.Callable | None = None,
@@ -3752,6 +3759,7 @@ class FILEBROWSER_MT_bookmarks_recents_specials_menu(bpy_types._GenericUI):
3752
3759
  self,
3753
3760
  searchpaths: list[str],
3754
3761
  operator: str,
3762
+ *,
3755
3763
  props_default: dict = None,
3756
3764
  prop_filepath: str | None = "filepath",
3757
3765
  filter_ext: collections.abc.Callable | None = None,
@@ -4022,6 +4030,7 @@ class FILEBROWSER_MT_context_menu(FileBrowserMenu, bpy_types._GenericUI):
4022
4030
  self,
4023
4031
  searchpaths: list[str],
4024
4032
  operator: str,
4033
+ *,
4025
4034
  props_default: dict = None,
4026
4035
  prop_filepath: str | None = "filepath",
4027
4036
  filter_ext: collections.abc.Callable | None = None,
@@ -4300,6 +4309,7 @@ class FILEBROWSER_MT_editor_menus(FileBrowserMenu, bpy_types._GenericUI):
4300
4309
  self,
4301
4310
  searchpaths: list[str],
4302
4311
  operator: str,
4312
+ *,
4303
4313
  props_default: dict = None,
4304
4314
  prop_filepath: str | None = "filepath",
4305
4315
  filter_ext: collections.abc.Callable | None = None,
@@ -4577,6 +4587,7 @@ class FILEBROWSER_MT_select(FileBrowserMenu, bpy_types._GenericUI):
4577
4587
  self,
4578
4588
  searchpaths: list[str],
4579
4589
  operator: str,
4590
+ *,
4580
4591
  props_default: dict = None,
4581
4592
  prop_filepath: str | None = "filepath",
4582
4593
  filter_ext: collections.abc.Callable | None = None,
@@ -4854,6 +4865,7 @@ class FILEBROWSER_MT_view(FileBrowserMenu, bpy_types._GenericUI):
4854
4865
  self,
4855
4866
  searchpaths: list[str],
4856
4867
  operator: str,
4868
+ *,
4857
4869
  props_default: dict = None,
4858
4870
  prop_filepath: str | None = "filepath",
4859
4871
  filter_ext: collections.abc.Callable | None = None,
@@ -5132,6 +5144,7 @@ class FILEBROWSER_MT_view_pie(bpy_types._GenericUI):
5132
5144
  self,
5133
5145
  searchpaths: list[str],
5134
5146
  operator: str,
5147
+ *,
5135
5148
  props_default: dict = None,
5136
5149
  prop_filepath: str | None = "filepath",
5137
5150
  filter_ext: collections.abc.Callable | None = None,
@@ -410,6 +410,7 @@ class GRAPH_MT_channel(bpy_types._GenericUI):
410
410
  self,
411
411
  searchpaths: list[str],
412
412
  operator: str,
413
+ *,
413
414
  props_default: dict = None,
414
415
  prop_filepath: str | None = "filepath",
415
416
  filter_ext: collections.abc.Callable | None = None,
@@ -680,6 +681,7 @@ class GRAPH_MT_context_menu(bpy_types._GenericUI):
680
681
  self,
681
682
  searchpaths: list[str],
682
683
  operator: str,
684
+ *,
683
685
  props_default: dict = None,
684
686
  prop_filepath: str | None = "filepath",
685
687
  filter_ext: collections.abc.Callable | None = None,
@@ -950,6 +952,7 @@ class GRAPH_MT_delete(bpy_types._GenericUI):
950
952
  self,
951
953
  searchpaths: list[str],
952
954
  operator: str,
955
+ *,
953
956
  props_default: dict = None,
954
957
  prop_filepath: str | None = "filepath",
955
958
  filter_ext: collections.abc.Callable | None = None,
@@ -1221,6 +1224,7 @@ class GRAPH_MT_editor_menus(bpy_types._GenericUI):
1221
1224
  self,
1222
1225
  searchpaths: list[str],
1223
1226
  operator: str,
1227
+ *,
1224
1228
  props_default: dict = None,
1225
1229
  prop_filepath: str | None = "filepath",
1226
1230
  filter_ext: collections.abc.Callable | None = None,
@@ -1491,6 +1495,7 @@ class GRAPH_MT_key(bpy_types._GenericUI):
1491
1495
  self,
1492
1496
  searchpaths: list[str],
1493
1497
  operator: str,
1498
+ *,
1494
1499
  props_default: dict = None,
1495
1500
  prop_filepath: str | None = "filepath",
1496
1501
  filter_ext: collections.abc.Callable | None = None,
@@ -1761,6 +1766,7 @@ class GRAPH_MT_key_blending(bpy_types._GenericUI):
1761
1766
  self,
1762
1767
  searchpaths: list[str],
1763
1768
  operator: str,
1769
+ *,
1764
1770
  props_default: dict = None,
1765
1771
  prop_filepath: str | None = "filepath",
1766
1772
  filter_ext: collections.abc.Callable | None = None,
@@ -2031,6 +2037,7 @@ class GRAPH_MT_key_density(bpy_types._GenericUI):
2031
2037
  self,
2032
2038
  searchpaths: list[str],
2033
2039
  operator: str,
2040
+ *,
2034
2041
  props_default: dict = None,
2035
2042
  prop_filepath: str | None = "filepath",
2036
2043
  filter_ext: collections.abc.Callable | None = None,
@@ -2301,6 +2308,7 @@ class GRAPH_MT_key_smoothing(bpy_types._GenericUI):
2301
2308
  self,
2302
2309
  searchpaths: list[str],
2303
2310
  operator: str,
2311
+ *,
2304
2312
  props_default: dict = None,
2305
2313
  prop_filepath: str | None = "filepath",
2306
2314
  filter_ext: collections.abc.Callable | None = None,
@@ -2571,6 +2579,7 @@ class GRAPH_MT_key_snap(bpy_types._GenericUI):
2571
2579
  self,
2572
2580
  searchpaths: list[str],
2573
2581
  operator: str,
2582
+ *,
2574
2583
  props_default: dict = None,
2575
2584
  prop_filepath: str | None = "filepath",
2576
2585
  filter_ext: collections.abc.Callable | None = None,
@@ -2841,6 +2850,7 @@ class GRAPH_MT_key_transform(bpy_types._GenericUI):
2841
2850
  self,
2842
2851
  searchpaths: list[str],
2843
2852
  operator: str,
2853
+ *,
2844
2854
  props_default: dict = None,
2845
2855
  prop_filepath: str | None = "filepath",
2846
2856
  filter_ext: collections.abc.Callable | None = None,
@@ -3111,6 +3121,7 @@ class GRAPH_MT_marker(bpy_types._GenericUI):
3111
3121
  self,
3112
3122
  searchpaths: list[str],
3113
3123
  operator: str,
3124
+ *,
3114
3125
  props_default: dict = None,
3115
3126
  prop_filepath: str | None = "filepath",
3116
3127
  filter_ext: collections.abc.Callable | None = None,
@@ -3381,6 +3392,7 @@ class GRAPH_MT_pivot_pie(bpy_types._GenericUI):
3381
3392
  self,
3382
3393
  searchpaths: list[str],
3383
3394
  operator: str,
3395
+ *,
3384
3396
  props_default: dict = None,
3385
3397
  prop_filepath: str | None = "filepath",
3386
3398
  filter_ext: collections.abc.Callable | None = None,
@@ -3651,6 +3663,7 @@ class GRAPH_MT_select(bpy_types._GenericUI):
3651
3663
  self,
3652
3664
  searchpaths: list[str],
3653
3665
  operator: str,
3666
+ *,
3654
3667
  props_default: dict = None,
3655
3668
  prop_filepath: str | None = "filepath",
3656
3669
  filter_ext: collections.abc.Callable | None = None,
@@ -3921,6 +3934,7 @@ class GRAPH_MT_snap_pie(bpy_types._GenericUI):
3921
3934
  self,
3922
3935
  searchpaths: list[str],
3923
3936
  operator: str,
3937
+ *,
3924
3938
  props_default: dict = None,
3925
3939
  prop_filepath: str | None = "filepath",
3926
3940
  filter_ext: collections.abc.Callable | None = None,
@@ -4191,6 +4205,7 @@ class GRAPH_MT_view(bpy_types._GenericUI):
4191
4205
  self,
4192
4206
  searchpaths: list[str],
4193
4207
  operator: str,
4208
+ *,
4194
4209
  props_default: dict = None,
4195
4210
  prop_filepath: str | None = "filepath",
4196
4211
  filter_ext: collections.abc.Callable | None = None,
@@ -4461,6 +4476,7 @@ class GRAPH_MT_view_pie(bpy_types._GenericUI):
4461
4476
  self,
4462
4477
  searchpaths: list[str],
4463
4478
  operator: str,
4479
+ *,
4464
4480
  props_default: dict = None,
4465
4481
  prop_filepath: str | None = "filepath",
4466
4482
  filter_ext: collections.abc.Callable | None = None,