fake-bpy-module 20240708__py3-none-any.whl → 20240709__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 (116) 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 +49 -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 -13
  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/gpencil/__init__.pyi +0 -28
  102. bpy/ops/paint/__init__.pyi +0 -48
  103. bpy/ops/pose/__init__.pyi +176 -0
  104. bpy/ops/wm/__init__.pyi +18 -0
  105. bpy/path/__init__.pyi +6 -6
  106. bpy/types/__init__.pyi +2607 -1090
  107. bpy/utils/__init__.pyi +14 -12
  108. bpy_extras/anim_utils/__init__.pyi +3 -3
  109. bpy_extras/view3d_utils/__init__.pyi +2 -0
  110. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240709.dist-info}/METADATA +1 -1
  111. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240709.dist-info}/RECORD +116 -113
  112. rna_info/__init__.pyi +1 -0
  113. rna_prop_ui/__init__.pyi +2 -1
  114. rna_xml/__init__.pyi +2 -2
  115. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240709.dist-info}/WHEEL +0 -0
  116. {fake_bpy_module-20240708.dist-info → fake_bpy_module-20240709.dist-info}/top_level.txt +0 -0
@@ -60,7 +60,7 @@ class AddPresetCamera(AddPresetBase):
60
60
  """
61
61
  ...
62
62
 
63
- def as_keywords(self, ignore=()):
63
+ def as_keywords(self, *, ignore=()):
64
64
  """Return a copy of the properties as a dictionary
65
65
 
66
66
  :param ignore:
@@ -293,7 +293,7 @@ class AddPresetCameraSafeAreas(AddPresetBase):
293
293
  """
294
294
  ...
295
295
 
296
- def as_keywords(self, ignore=()):
296
+ def as_keywords(self, *, ignore=()):
297
297
  """Return a copy of the properties as a dictionary
298
298
 
299
299
  :param ignore:
@@ -526,7 +526,7 @@ class AddPresetCloth(AddPresetBase):
526
526
  """
527
527
  ...
528
528
 
529
- def as_keywords(self, ignore=()):
529
+ def as_keywords(self, *, ignore=()):
530
530
  """Return a copy of the properties as a dictionary
531
531
 
532
532
  :param ignore:
@@ -759,7 +759,7 @@ class AddPresetColorManagementWhiteBalance(AddPresetBase):
759
759
  """
760
760
  ...
761
761
 
762
- def as_keywords(self, ignore=()):
762
+ def as_keywords(self, *, ignore=()):
763
763
  """Return a copy of the properties as a dictionary
764
764
 
765
765
  :param ignore:
@@ -992,7 +992,7 @@ class AddPresetEEVEERaytracing(AddPresetBase):
992
992
  """
993
993
  ...
994
994
 
995
- def as_keywords(self, ignore=()):
995
+ def as_keywords(self, *, ignore=()):
996
996
  """Return a copy of the properties as a dictionary
997
997
 
998
998
  :param ignore:
@@ -1225,7 +1225,7 @@ class AddPresetFluid(AddPresetBase):
1225
1225
  """
1226
1226
  ...
1227
1227
 
1228
- def as_keywords(self, ignore=()):
1228
+ def as_keywords(self, *, ignore=()):
1229
1229
  """Return a copy of the properties as a dictionary
1230
1230
 
1231
1231
  :param ignore:
@@ -1458,7 +1458,7 @@ class AddPresetGpencilBrush(AddPresetBase):
1458
1458
  """
1459
1459
  ...
1460
1460
 
1461
- def as_keywords(self, ignore=()):
1461
+ def as_keywords(self, *, ignore=()):
1462
1462
  """Return a copy of the properties as a dictionary
1463
1463
 
1464
1464
  :param ignore:
@@ -1691,7 +1691,7 @@ class AddPresetGpencilMaterial(AddPresetBase):
1691
1691
  """
1692
1692
  ...
1693
1693
 
1694
- def as_keywords(self, ignore=()):
1694
+ def as_keywords(self, *, ignore=()):
1695
1695
  """Return a copy of the properties as a dictionary
1696
1696
 
1697
1697
  :param ignore:
@@ -1924,7 +1924,7 @@ class AddPresetHairDynamics(AddPresetBase):
1924
1924
  """
1925
1925
  ...
1926
1926
 
1927
- def as_keywords(self, ignore=()):
1927
+ def as_keywords(self, *, ignore=()):
1928
1928
  """Return a copy of the properties as a dictionary
1929
1929
 
1930
1930
  :param ignore:
@@ -2155,7 +2155,7 @@ class AddPresetInterfaceTheme(AddPresetBase):
2155
2155
  """
2156
2156
  ...
2157
2157
 
2158
- def as_keywords(self, ignore=()):
2158
+ def as_keywords(self, *, ignore=()):
2159
2159
  """Return a copy of the properties as a dictionary
2160
2160
 
2161
2161
  :param ignore:
@@ -2394,7 +2394,7 @@ class AddPresetKeyconfig(AddPresetBase):
2394
2394
  """
2395
2395
  ...
2396
2396
 
2397
- def as_keywords(self, ignore=()):
2397
+ def as_keywords(self, *, ignore=()):
2398
2398
  """Return a copy of the properties as a dictionary
2399
2399
 
2400
2400
  :param ignore:
@@ -2627,7 +2627,7 @@ class AddPresetNodeColor(AddPresetBase):
2627
2627
  """
2628
2628
  ...
2629
2629
 
2630
- def as_keywords(self, ignore=()):
2630
+ def as_keywords(self, *, ignore=()):
2631
2631
  """Return a copy of the properties as a dictionary
2632
2632
 
2633
2633
  :param ignore:
@@ -2860,7 +2860,7 @@ class AddPresetOperator(AddPresetBase):
2860
2860
  """
2861
2861
  ...
2862
2862
 
2863
- def as_keywords(self, ignore=()):
2863
+ def as_keywords(self, *, ignore=()):
2864
2864
  """Return a copy of the properties as a dictionary
2865
2865
 
2866
2866
  :param ignore:
@@ -3100,7 +3100,7 @@ class AddPresetRender(AddPresetBase):
3100
3100
  """
3101
3101
  ...
3102
3102
 
3103
- def as_keywords(self, ignore=()):
3103
+ def as_keywords(self, *, ignore=()):
3104
3104
  """Return a copy of the properties as a dictionary
3105
3105
 
3106
3106
  :param ignore:
@@ -3333,7 +3333,7 @@ class AddPresetTextEditor(AddPresetBase):
3333
3333
  """
3334
3334
  ...
3335
3335
 
3336
- def as_keywords(self, ignore=()):
3336
+ def as_keywords(self, *, ignore=()):
3337
3337
  """Return a copy of the properties as a dictionary
3338
3338
 
3339
3339
  :param ignore:
@@ -3566,7 +3566,7 @@ class AddPresetTrackingCamera(AddPresetBase):
3566
3566
  """
3567
3567
  ...
3568
3568
 
3569
- def as_keywords(self, ignore=()):
3569
+ def as_keywords(self, *, ignore=()):
3570
3570
  """Return a copy of the properties as a dictionary
3571
3571
 
3572
3572
  :param ignore:
@@ -3799,7 +3799,7 @@ class AddPresetTrackingSettings(AddPresetBase):
3799
3799
  """
3800
3800
  ...
3801
3801
 
3802
- def as_keywords(self, ignore=()):
3802
+ def as_keywords(self, *, ignore=()):
3803
3803
  """Return a copy of the properties as a dictionary
3804
3804
 
3805
3805
  :param ignore:
@@ -4032,7 +4032,7 @@ class AddPresetTrackingTrackColor(AddPresetBase):
4032
4032
  """
4033
4033
  ...
4034
4034
 
4035
- def as_keywords(self, ignore=()):
4035
+ def as_keywords(self, *, ignore=()):
4036
4036
  """Return a copy of the properties as a dictionary
4037
4037
 
4038
4038
  :param ignore:
@@ -4253,7 +4253,7 @@ class ExecutePreset:
4253
4253
  bl_rna: typing.Any
4254
4254
  id_data: typing.Any
4255
4255
 
4256
- def as_keywords(self, ignore=()):
4256
+ def as_keywords(self, *, ignore=()):
4257
4257
  """Return a copy of the properties as a dictionary
4258
4258
 
4259
4259
  :param ignore:
@@ -4469,7 +4469,7 @@ class RemovePresetInterfaceTheme(AddPresetBase):
4469
4469
  """
4470
4470
  ...
4471
4471
 
4472
- def as_keywords(self, ignore=()):
4472
+ def as_keywords(self, *, ignore=()):
4473
4473
  """Return a copy of the properties as a dictionary
4474
4474
 
4475
4475
  :param ignore:
@@ -4714,7 +4714,7 @@ class RemovePresetKeyconfig(AddPresetBase):
4714
4714
  """
4715
4715
  ...
4716
4716
 
4717
- def as_keywords(self, ignore=()):
4717
+ def as_keywords(self, *, ignore=()):
4718
4718
  """Return a copy of the properties as a dictionary
4719
4719
 
4720
4720
  :param ignore:
@@ -4966,7 +4966,7 @@ class SavePresetInterfaceTheme(AddPresetBase):
4966
4966
  """
4967
4967
  ...
4968
4968
 
4969
- def as_keywords(self, ignore=()):
4969
+ def as_keywords(self, *, ignore=()):
4970
4970
  """Return a copy of the properties as a dictionary
4971
4971
 
4972
4972
  :param ignore:
@@ -5374,6 +5374,7 @@ class WM_MT_operator_presets(bpy_types._GenericUI):
5374
5374
  self,
5375
5375
  searchpaths: list[str],
5376
5376
  operator: str,
5377
+ *,
5377
5378
  props_default: dict = None,
5378
5379
  prop_filepath: str | None = "filepath",
5379
5380
  filter_ext: collections.abc.Callable | None = None,
@@ -5466,7 +5467,7 @@ class WM_OT_operator_presets_cleanup:
5466
5467
  bl_rna: typing.Any
5467
5468
  id_data: typing.Any
5468
5469
 
5469
- def as_keywords(self, ignore=()):
5470
+ def as_keywords(self, *, ignore=()):
5470
5471
  """Return a copy of the properties as a dictionary
5471
5472
 
5472
5473
  :param ignore:
@@ -5851,6 +5852,7 @@ class WM_PT_operator_presets(bl_ui.utils.PresetPanel, bpy_types._GenericUI):
5851
5852
  self,
5852
5853
  searchpaths: list[str],
5853
5854
  operator: str,
5855
+ *,
5854
5856
  props_default: dict = None,
5855
5857
  prop_filepath: str | None = "filepath",
5856
5858
  filter_ext: collections.abc.Callable | None = None,
@@ -15,7 +15,7 @@ class BakeToKeyframes:
15
15
  bl_rna: typing.Any
16
16
  id_data: typing.Any
17
17
 
18
- def as_keywords(self, ignore=()):
18
+ def as_keywords(self, *, ignore=()):
19
19
  """Return a copy of the properties as a dictionary
20
20
 
21
21
  :param ignore:
@@ -237,7 +237,7 @@ class ConnectRigidBodies:
237
237
  bl_rna: typing.Any
238
238
  id_data: typing.Any
239
239
 
240
- def as_keywords(self, ignore=()):
240
+ def as_keywords(self, *, ignore=()):
241
241
  """Return a copy of the properties as a dictionary
242
242
 
243
243
  :param ignore:
@@ -451,7 +451,7 @@ class CopyRigidbodySettings:
451
451
  bl_rna: typing.Any
452
452
  id_data: typing.Any
453
453
 
454
- def as_keywords(self, ignore=()):
454
+ def as_keywords(self, *, ignore=()):
455
455
  """Return a copy of the properties as a dictionary
456
456
 
457
457
  :param ignore:
@@ -15,7 +15,7 @@ class PlayRenderedAnim:
15
15
  bl_rna: typing.Any
16
16
  id_data: typing.Any
17
17
 
18
- def as_keywords(self, ignore=()):
18
+ def as_keywords(self, *, ignore=()):
19
19
  """Return a copy of the properties as a dictionary
20
20
 
21
21
  :param ignore:
@@ -40,7 +40,7 @@ class SequencerCrossfadeSounds:
40
40
  bl_rna: typing.Any
41
41
  id_data: typing.Any
42
42
 
43
- def as_keywords(self, ignore=()):
43
+ def as_keywords(self, *, ignore=()):
44
44
  """Return a copy of the properties as a dictionary
45
45
 
46
46
  :param ignore:
@@ -254,7 +254,7 @@ class SequencerDeinterlaceSelectedMovies:
254
254
  bl_rna: typing.Any
255
255
  id_data: typing.Any
256
256
 
257
- def as_keywords(self, ignore=()):
257
+ def as_keywords(self, *, ignore=()):
258
258
  """Return a copy of the properties as a dictionary
259
259
 
260
260
  :param ignore:
@@ -468,7 +468,7 @@ class SequencerFadesAdd:
468
468
  bl_rna: typing.Any
469
469
  id_data: typing.Any
470
470
 
471
- def as_keywords(self, ignore=()):
471
+ def as_keywords(self, *, ignore=()):
472
472
  """Return a copy of the properties as a dictionary
473
473
 
474
474
  :param ignore:
@@ -737,7 +737,7 @@ class SequencerFadesClear:
737
737
  bl_rna: typing.Any
738
738
  id_data: typing.Any
739
739
 
740
- def as_keywords(self, ignore=()):
740
+ def as_keywords(self, *, ignore=()):
741
741
  """Return a copy of the properties as a dictionary
742
742
 
743
743
  :param ignore:
@@ -951,7 +951,7 @@ class SequencerSplitMulticam:
951
951
  bl_rna: typing.Any
952
952
  id_data: typing.Any
953
953
 
954
- def as_keywords(self, ignore=()):
954
+ def as_keywords(self, *, ignore=()):
955
955
  """Return a copy of the properties as a dictionary
956
956
 
957
957
  :param ignore:
@@ -15,7 +15,7 @@ class SPREADSHEET_OT_toggle_pin:
15
15
  bl_rna: typing.Any
16
16
  id_data: typing.Any
17
17
 
18
- def as_keywords(self, ignore=()):
18
+ def as_keywords(self, *, ignore=()):
19
19
  """Return a copy of the properties as a dictionary
20
20
 
21
21
  :param ignore:
@@ -14,7 +14,7 @@ class PREFERENCES_OT_addon_disable:
14
14
  bl_rna: typing.Any
15
15
  id_data: typing.Any
16
16
 
17
- def as_keywords(self, ignore=()):
17
+ def as_keywords(self, *, ignore=()):
18
18
  """Return a copy of the properties as a dictionary
19
19
 
20
20
  :param ignore:
@@ -220,7 +220,7 @@ class PREFERENCES_OT_addon_enable:
220
220
  bl_rna: typing.Any
221
221
  id_data: typing.Any
222
222
 
223
- def as_keywords(self, ignore=()):
223
+ def as_keywords(self, *, ignore=()):
224
224
  """Return a copy of the properties as a dictionary
225
225
 
226
226
  :param ignore:
@@ -427,7 +427,7 @@ class PREFERENCES_OT_addon_expand:
427
427
  bl_rna: typing.Any
428
428
  id_data: typing.Any
429
429
 
430
- def as_keywords(self, ignore=()):
430
+ def as_keywords(self, *, ignore=()):
431
431
  """Return a copy of the properties as a dictionary
432
432
 
433
433
  :param ignore:
@@ -633,7 +633,7 @@ class PREFERENCES_OT_addon_install:
633
633
  bl_rna: typing.Any
634
634
  id_data: typing.Any
635
635
 
636
- def as_keywords(self, ignore=()):
636
+ def as_keywords(self, *, ignore=()):
637
637
  """Return a copy of the properties as a dictionary
638
638
 
639
639
  :param ignore:
@@ -847,7 +847,7 @@ class PREFERENCES_OT_addon_refresh:
847
847
  bl_rna: typing.Any
848
848
  id_data: typing.Any
849
849
 
850
- def as_keywords(self, ignore=()):
850
+ def as_keywords(self, *, ignore=()):
851
851
  """Return a copy of the properties as a dictionary
852
852
 
853
853
  :param ignore:
@@ -1053,7 +1053,7 @@ class PREFERENCES_OT_addon_remove:
1053
1053
  bl_rna: typing.Any
1054
1054
  id_data: typing.Any
1055
1055
 
1056
- def as_keywords(self, ignore=()):
1056
+ def as_keywords(self, *, ignore=()):
1057
1057
  """Return a copy of the properties as a dictionary
1058
1058
 
1059
1059
  :param ignore:
@@ -1282,7 +1282,7 @@ class PREFERENCES_OT_addon_show:
1282
1282
  bl_rna: typing.Any
1283
1283
  id_data: typing.Any
1284
1284
 
1285
- def as_keywords(self, ignore=()):
1285
+ def as_keywords(self, *, ignore=()):
1286
1286
  """Return a copy of the properties as a dictionary
1287
1287
 
1288
1288
  :param ignore:
@@ -1488,7 +1488,7 @@ class PREFERENCES_OT_app_template_install:
1488
1488
  bl_rna: typing.Any
1489
1489
  id_data: typing.Any
1490
1490
 
1491
- def as_keywords(self, ignore=()):
1491
+ def as_keywords(self, *, ignore=()):
1492
1492
  """Return a copy of the properties as a dictionary
1493
1493
 
1494
1494
  :param ignore:
@@ -1702,7 +1702,7 @@ class PREFERENCES_OT_copy_prev:
1702
1702
  bl_rna: typing.Any
1703
1703
  id_data: typing.Any
1704
1704
 
1705
- def as_keywords(self, ignore=()):
1705
+ def as_keywords(self, *, ignore=()):
1706
1706
  """Return a copy of the properties as a dictionary
1707
1707
 
1708
1708
  :param ignore:
@@ -1914,7 +1914,7 @@ class PREFERENCES_OT_keyconfig_activate:
1914
1914
  bl_rna: typing.Any
1915
1915
  id_data: typing.Any
1916
1916
 
1917
- def as_keywords(self, ignore=()):
1917
+ def as_keywords(self, *, ignore=()):
1918
1918
  """Return a copy of the properties as a dictionary
1919
1919
 
1920
1920
  :param ignore:
@@ -2120,7 +2120,7 @@ class PREFERENCES_OT_keyconfig_export:
2120
2120
  bl_rna: typing.Any
2121
2121
  id_data: typing.Any
2122
2122
 
2123
- def as_keywords(self, ignore=()):
2123
+ def as_keywords(self, *, ignore=()):
2124
2124
  """Return a copy of the properties as a dictionary
2125
2125
 
2126
2126
  :param ignore:
@@ -2334,7 +2334,7 @@ class PREFERENCES_OT_keyconfig_import:
2334
2334
  bl_rna: typing.Any
2335
2335
  id_data: typing.Any
2336
2336
 
2337
- def as_keywords(self, ignore=()):
2337
+ def as_keywords(self, *, ignore=()):
2338
2338
  """Return a copy of the properties as a dictionary
2339
2339
 
2340
2340
  :param ignore:
@@ -2548,7 +2548,7 @@ class PREFERENCES_OT_keyconfig_remove:
2548
2548
  bl_rna: typing.Any
2549
2549
  id_data: typing.Any
2550
2550
 
2551
- def as_keywords(self, ignore=()):
2551
+ def as_keywords(self, *, ignore=()):
2552
2552
  """Return a copy of the properties as a dictionary
2553
2553
 
2554
2554
  :param ignore:
@@ -2761,7 +2761,7 @@ class PREFERENCES_OT_keyconfig_test:
2761
2761
  bl_rna: typing.Any
2762
2762
  id_data: typing.Any
2763
2763
 
2764
- def as_keywords(self, ignore=()):
2764
+ def as_keywords(self, *, ignore=()):
2765
2765
  """Return a copy of the properties as a dictionary
2766
2766
 
2767
2767
  :param ignore:
@@ -2967,7 +2967,7 @@ class PREFERENCES_OT_keyitem_add:
2967
2967
  bl_rna: typing.Any
2968
2968
  id_data: typing.Any
2969
2969
 
2970
- def as_keywords(self, ignore=()):
2970
+ def as_keywords(self, *, ignore=()):
2971
2971
  """Return a copy of the properties as a dictionary
2972
2972
 
2973
2973
  :param ignore:
@@ -3173,7 +3173,7 @@ class PREFERENCES_OT_keyitem_remove:
3173
3173
  bl_rna: typing.Any
3174
3174
  id_data: typing.Any
3175
3175
 
3176
- def as_keywords(self, ignore=()):
3176
+ def as_keywords(self, *, ignore=()):
3177
3177
  """Return a copy of the properties as a dictionary
3178
3178
 
3179
3179
  :param ignore:
@@ -3386,7 +3386,7 @@ class PREFERENCES_OT_keyitem_restore:
3386
3386
  bl_rna: typing.Any
3387
3387
  id_data: typing.Any
3388
3388
 
3389
- def as_keywords(self, ignore=()):
3389
+ def as_keywords(self, *, ignore=()):
3390
3390
  """Return a copy of the properties as a dictionary
3391
3391
 
3392
3392
  :param ignore:
@@ -3599,7 +3599,7 @@ class PREFERENCES_OT_keymap_restore:
3599
3599
  bl_rna: typing.Any
3600
3600
  id_data: typing.Any
3601
3601
 
3602
- def as_keywords(self, ignore=()):
3602
+ def as_keywords(self, *, ignore=()):
3603
3603
  """Return a copy of the properties as a dictionary
3604
3604
 
3605
3605
  :param ignore:
@@ -3803,7 +3803,7 @@ class PREFERENCES_OT_script_directory_new:
3803
3803
  bl_rna: typing.Any
3804
3804
  id_data: typing.Any
3805
3805
 
3806
- def as_keywords(self, ignore=()):
3806
+ def as_keywords(self, *, ignore=()):
3807
3807
  """Return a copy of the properties as a dictionary
3808
3808
 
3809
3809
  :param ignore:
@@ -4015,7 +4015,7 @@ class PREFERENCES_OT_script_directory_remove:
4015
4015
  bl_rna: typing.Any
4016
4016
  id_data: typing.Any
4017
4017
 
4018
- def as_keywords(self, ignore=()):
4018
+ def as_keywords(self, *, ignore=()):
4019
4019
  """Return a copy of the properties as a dictionary
4020
4020
 
4021
4021
  :param ignore:
@@ -4221,7 +4221,7 @@ class PREFERENCES_OT_studiolight_copy_settings:
4221
4221
  bl_rna: typing.Any
4222
4222
  id_data: typing.Any
4223
4223
 
4224
- def as_keywords(self, ignore=()):
4224
+ def as_keywords(self, *, ignore=()):
4225
4225
  """Return a copy of the properties as a dictionary
4226
4226
 
4227
4227
  :param ignore:
@@ -4427,7 +4427,7 @@ class PREFERENCES_OT_studiolight_install:
4427
4427
  bl_rna: typing.Any
4428
4428
  id_data: typing.Any
4429
4429
 
4430
- def as_keywords(self, ignore=()):
4430
+ def as_keywords(self, *, ignore=()):
4431
4431
  """Return a copy of the properties as a dictionary
4432
4432
 
4433
4433
  :param ignore:
@@ -4642,7 +4642,7 @@ class PREFERENCES_OT_studiolight_new:
4642
4642
  bl_rna: typing.Any
4643
4643
  id_data: typing.Any
4644
4644
 
4645
- def as_keywords(self, ignore=()):
4645
+ def as_keywords(self, *, ignore=()):
4646
4646
  """Return a copy of the properties as a dictionary
4647
4647
 
4648
4648
  :param ignore:
@@ -4863,7 +4863,7 @@ class PREFERENCES_OT_studiolight_uninstall:
4863
4863
  bl_rna: typing.Any
4864
4864
  id_data: typing.Any
4865
4865
 
4866
- def as_keywords(self, ignore=()):
4866
+ def as_keywords(self, *, ignore=()):
4867
4867
  """Return a copy of the properties as a dictionary
4868
4868
 
4869
4869
  :param ignore:
@@ -5069,7 +5069,7 @@ class PREFERENCES_OT_theme_install:
5069
5069
  bl_rna: typing.Any
5070
5070
  id_data: typing.Any
5071
5071
 
5072
- def as_keywords(self, ignore=()):
5072
+ def as_keywords(self, *, ignore=()):
5073
5073
  """Return a copy of the properties as a dictionary
5074
5074
 
5075
5075
  :param ignore:
@@ -15,7 +15,7 @@ class FollowActiveQuads:
15
15
  bl_rna: typing.Any
16
16
  id_data: typing.Any
17
17
 
18
- def as_keywords(self, ignore=()):
18
+ def as_keywords(self, *, ignore=()):
19
19
  """Return a copy of the properties as a dictionary
20
20
 
21
21
  :param ignore:
@@ -15,7 +15,7 @@ class LightMapPack:
15
15
  bl_rna: typing.Any
16
16
  id_data: typing.Any
17
17
 
18
- def as_keywords(self, ignore=()):
18
+ def as_keywords(self, *, ignore=()):
19
19
  """Return a copy of the properties as a dictionary
20
20
 
21
21
  :param ignore:
@@ -276,4 +276,4 @@ def lightmap_uvpack(
276
276
 
277
277
  ...
278
278
 
279
- def unwrap(operator, context, kwargs): ...
279
+ def unwrap(operator, context, **kwargs): ...
@@ -16,7 +16,7 @@ class AlignUVRotation:
16
16
  bl_rna: typing.Any
17
17
  id_data: typing.Any
18
18
 
19
- def as_keywords(self, ignore=()):
19
+ def as_keywords(self, *, ignore=()):
20
20
  """Return a copy of the properties as a dictionary
21
21
 
22
22
  :param ignore:
@@ -237,7 +237,7 @@ class RandomizeUVTransform:
237
237
  bl_rna: typing.Any
238
238
  id_data: typing.Any
239
239
 
240
- def as_keywords(self, ignore=()):
240
+ def as_keywords(self, *, ignore=()):
241
241
  """Return a copy of the properties as a dictionary
242
242
 
243
243
  :param ignore:
@@ -15,7 +15,7 @@ class VertexPaintDirt:
15
15
  bl_rna: typing.Any
16
16
  id_data: typing.Any
17
17
 
18
- def as_keywords(self, ignore=()):
18
+ def as_keywords(self, *, ignore=()):
19
19
  """Return a copy of the properties as a dictionary
20
20
 
21
21
  :param ignore:
@@ -599,7 +599,7 @@ class VIEW3D_OT_edit_mesh_extrude_individual_move:
599
599
  bl_rna: typing.Any
600
600
  id_data: typing.Any
601
601
 
602
- def as_keywords(self, ignore=()):
602
+ def as_keywords(self, *, ignore=()):
603
603
  """Return a copy of the properties as a dictionary
604
604
 
605
605
  :param ignore:
@@ -820,7 +820,7 @@ class VIEW3D_OT_edit_mesh_extrude_manifold_normal:
820
820
  bl_rna: typing.Any
821
821
  id_data: typing.Any
822
822
 
823
- def as_keywords(self, ignore=()):
823
+ def as_keywords(self, *, ignore=()):
824
824
  """Return a copy of the properties as a dictionary
825
825
 
826
826
  :param ignore:
@@ -1041,7 +1041,7 @@ class VIEW3D_OT_edit_mesh_extrude_move:
1041
1041
  bl_rna: typing.Any
1042
1042
  id_data: typing.Any
1043
1043
 
1044
- def as_keywords(self, ignore=()):
1044
+ def as_keywords(self, *, ignore=()):
1045
1045
  """Return a copy of the properties as a dictionary
1046
1046
 
1047
1047
  :param ignore:
@@ -1274,7 +1274,7 @@ class VIEW3D_OT_edit_mesh_extrude_shrink_fatten:
1274
1274
  bl_rna: typing.Any
1275
1275
  id_data: typing.Any
1276
1276
 
1277
- def as_keywords(self, ignore=()):
1277
+ def as_keywords(self, *, ignore=()):
1278
1278
  """Return a copy of the properties as a dictionary
1279
1279
 
1280
1280
  :param ignore:
@@ -1496,7 +1496,7 @@ class VIEW3D_OT_transform_gizmo_set:
1496
1496
  bl_rna: typing.Any
1497
1497
  id_data: typing.Any
1498
1498
 
1499
- def as_keywords(self, ignore=()):
1499
+ def as_keywords(self, *, ignore=()):
1500
1500
  """Return a copy of the properties as a dictionary
1501
1501
 
1502
1502
  :param ignore: