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
@@ -15,7 +15,7 @@ class CLIP_OT_bundles_to_mesh:
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:
@@ -229,7 +229,7 @@ class CLIP_OT_constraint_to_fcurve:
229
229
  bl_rna: typing.Any
230
230
  id_data: typing.Any
231
231
 
232
- def as_keywords(self, ignore=()):
232
+ def as_keywords(self, *, ignore=()):
233
233
  """Return a copy of the properties as a dictionary
234
234
 
235
235
  :param ignore:
@@ -436,7 +436,7 @@ class CLIP_OT_delete_proxy:
436
436
  bl_rna: typing.Any
437
437
  id_data: typing.Any
438
438
 
439
- def as_keywords(self, ignore=()):
439
+ def as_keywords(self, *, ignore=()):
440
440
  """Return a copy of the properties as a dictionary
441
441
 
442
442
  :param ignore:
@@ -658,7 +658,7 @@ class CLIP_OT_filter_tracks:
658
658
  bl_rna: typing.Any
659
659
  id_data: typing.Any
660
660
 
661
- def as_keywords(self, ignore=()):
661
+ def as_keywords(self, *, ignore=()):
662
662
  """Return a copy of the properties as a dictionary
663
663
 
664
664
  :param ignore:
@@ -869,7 +869,7 @@ class CLIP_OT_set_active_clip:
869
869
  bl_rna: typing.Any
870
870
  id_data: typing.Any
871
871
 
872
- def as_keywords(self, ignore=()):
872
+ def as_keywords(self, *, ignore=()):
873
873
  """Return a copy of the properties as a dictionary
874
874
 
875
875
  :param ignore:
@@ -1083,7 +1083,7 @@ class CLIP_OT_set_viewport_background:
1083
1083
  bl_rna: typing.Any
1084
1084
  id_data: typing.Any
1085
1085
 
1086
- def as_keywords(self, ignore=()):
1086
+ def as_keywords(self, *, ignore=()):
1087
1087
  """Return a copy of the properties as a dictionary
1088
1088
 
1089
1089
  :param ignore:
@@ -1297,7 +1297,7 @@ class CLIP_OT_setup_tracking_scene:
1297
1297
  bl_rna: typing.Any
1298
1298
  id_data: typing.Any
1299
1299
 
1300
- def as_keywords(self, ignore=()):
1300
+ def as_keywords(self, *, ignore=()):
1301
1301
  """Return a copy of the properties as a dictionary
1302
1302
 
1303
1303
  :param ignore:
@@ -1519,7 +1519,7 @@ class CLIP_OT_track_settings_as_default:
1519
1519
  bl_rna: typing.Any
1520
1520
  id_data: typing.Any
1521
1521
 
1522
- def as_keywords(self, ignore=()):
1522
+ def as_keywords(self, *, ignore=()):
1523
1523
  """Return a copy of the properties as a dictionary
1524
1524
 
1525
1525
  :param ignore:
@@ -1733,7 +1733,7 @@ class CLIP_OT_track_settings_to_track:
1733
1733
  bl_rna: typing.Any
1734
1734
  id_data: typing.Any
1735
1735
 
1736
- def as_keywords(self, ignore=()):
1736
+ def as_keywords(self, *, ignore=()):
1737
1737
  """Return a copy of the properties as a dictionary
1738
1738
 
1739
1739
  :param ignore:
@@ -1947,7 +1947,7 @@ class CLIP_OT_track_to_empty:
1947
1947
  bl_rna: typing.Any
1948
1948
  id_data: typing.Any
1949
1949
 
1950
- def as_keywords(self, ignore=()):
1950
+ def as_keywords(self, *, ignore=()):
1951
1951
  """Return a copy of the properties as a dictionary
1952
1952
 
1953
1953
  :param ignore:
@@ -2155,5 +2155,5 @@ class CLIP_OT_track_to_empty:
2155
2155
  def CLIP_camera_for_clip(context, clip): ...
2156
2156
  def CLIP_default_settings_from_track(clip, track, framenr): ...
2157
2157
  def CLIP_set_viewport_background(context, clip, clip_user): ...
2158
- def CLIP_spaces_walk(context, all_screens, tarea, tspace, callback, args): ...
2158
+ def CLIP_spaces_walk(context, all_screens, tarea, tspace, callback, *args): ...
2159
2159
  def CLIP_track_view_selected(sc, track): ...
@@ -15,7 +15,7 @@ class NODE_OT_connect_to_output(bl_operators.node_editor.node_functions.NodeEdit
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 ConsoleAutocomplete:
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:
@@ -227,7 +227,7 @@ class ConsoleBanner:
227
227
  bl_rna: typing.Any
228
228
  id_data: typing.Any
229
229
 
230
- def as_keywords(self, ignore=()):
230
+ def as_keywords(self, *, ignore=()):
231
231
  """Return a copy of the properties as a dictionary
232
232
 
233
233
  :param ignore:
@@ -440,7 +440,7 @@ class ConsoleCopyAsScript:
440
440
  bl_rna: typing.Any
441
441
  id_data: typing.Any
442
442
 
443
- def as_keywords(self, ignore=()):
443
+ def as_keywords(self, *, ignore=()):
444
444
  """Return a copy of the properties as a dictionary
445
445
 
446
446
  :param ignore:
@@ -654,7 +654,7 @@ class ConsoleExec:
654
654
  bl_rna: typing.Any
655
655
  id_data: typing.Any
656
656
 
657
- def as_keywords(self, ignore=()):
657
+ def as_keywords(self, *, ignore=()):
658
658
  """Return a copy of the properties as a dictionary
659
659
 
660
660
  :param ignore:
@@ -867,7 +867,7 @@ class ConsoleLanguage:
867
867
  bl_rna: typing.Any
868
868
  id_data: typing.Any
869
869
 
870
- def as_keywords(self, ignore=()):
870
+ def as_keywords(self, *, ignore=()):
871
871
  """Return a copy of the properties as a dictionary
872
872
 
873
873
  :param ignore:
@@ -15,7 +15,7 @@ class CONSTRAINT_OT_add_target:
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:
@@ -229,7 +229,7 @@ class CONSTRAINT_OT_disable_keep_transform:
229
229
  bl_rna: typing.Any
230
230
  id_data: typing.Any
231
231
 
232
- def as_keywords(self, ignore=()):
232
+ def as_keywords(self, *, ignore=()):
233
233
  """Return a copy of the properties as a dictionary
234
234
 
235
235
  :param ignore:
@@ -443,7 +443,7 @@ class CONSTRAINT_OT_normalize_target_weights:
443
443
  bl_rna: typing.Any
444
444
  id_data: typing.Any
445
445
 
446
- def as_keywords(self, ignore=()):
446
+ def as_keywords(self, *, ignore=()):
447
447
  """Return a copy of the properties as a dictionary
448
448
 
449
449
  :param ignore:
@@ -657,7 +657,7 @@ class CONSTRAINT_OT_remove_target:
657
657
  bl_rna: typing.Any
658
658
  id_data: typing.Any
659
659
 
660
- def as_keywords(self, ignore=()):
660
+ def as_keywords(self, *, ignore=()):
661
661
  """Return a copy of the properties as a dictionary
662
662
 
663
663
  :param ignore:
@@ -15,7 +15,7 @@ class WM_OT_blend_strings_utf8_validate:
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:
@@ -230,7 +230,7 @@ class WM_OT_previews_batch_clear:
230
230
  bl_rna: typing.Any
231
231
  id_data: typing.Any
232
232
 
233
- def as_keywords(self, ignore=()):
233
+ def as_keywords(self, *, ignore=()):
234
234
  """Return a copy of the properties as a dictionary
235
235
 
236
236
  :param ignore:
@@ -445,7 +445,7 @@ class WM_OT_previews_batch_generate:
445
445
  bl_rna: typing.Any
446
446
  id_data: typing.Any
447
447
 
448
- def as_keywords(self, ignore=()):
448
+ def as_keywords(self, *, ignore=()):
449
449
  """Return a copy of the properties as a dictionary
450
450
 
451
451
  :param ignore:
@@ -15,7 +15,7 @@ class SCENE_OT_freestyle_add_edge_marks_to_keying_set:
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:
@@ -229,7 +229,7 @@ class SCENE_OT_freestyle_add_face_marks_to_keying_set:
229
229
  bl_rna: typing.Any
230
230
  id_data: typing.Any
231
231
 
232
- def as_keywords(self, ignore=()):
232
+ def as_keywords(self, *, ignore=()):
233
233
  """Return a copy of the properties as a dictionary
234
234
 
235
235
  :param ignore:
@@ -443,7 +443,7 @@ class SCENE_OT_freestyle_fill_range_by_selection:
443
443
  bl_rna: typing.Any
444
444
  id_data: typing.Any
445
445
 
446
- def as_keywords(self, ignore=()):
446
+ def as_keywords(self, *, ignore=()):
447
447
  """Return a copy of the properties as a dictionary
448
448
 
449
449
  :param ignore:
@@ -657,7 +657,7 @@ class SCENE_OT_freestyle_module_open:
657
657
  bl_rna: typing.Any
658
658
  id_data: typing.Any
659
659
 
660
- def as_keywords(self, ignore=()):
660
+ def as_keywords(self, *, ignore=()):
661
661
  """Return a copy of the properties as a dictionary
662
662
 
663
663
  :param ignore:
@@ -15,7 +15,7 @@ class MoveModifierToNodes:
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 NewGeometryNodeGroupTool:
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 NewGeometryNodeTreeAssign:
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:
@@ -665,7 +665,7 @@ class NewGeometryNodesModifier:
665
665
  bl_rna: typing.Any
666
666
  id_data: typing.Any
667
667
 
668
- def as_keywords(self, ignore=()):
668
+ def as_keywords(self, *, ignore=()):
669
669
  """Return a copy of the properties as a dictionary
670
670
 
671
671
  :param ignore:
@@ -15,7 +15,7 @@ class EditExternally:
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:
@@ -423,7 +423,7 @@ class IMAGE_OT_open_images:
423
423
  bl_rna: typing.Any
424
424
  id_data: typing.Any
425
425
 
426
- def as_keywords(self, ignore=()):
426
+ def as_keywords(self, *, ignore=()):
427
427
  """Return a copy of the properties as a dictionary
428
428
 
429
429
  :param ignore:
@@ -637,7 +637,7 @@ class ProjectApply:
637
637
  bl_rna: typing.Any
638
638
  id_data: typing.Any
639
639
 
640
- def as_keywords(self, ignore=()):
640
+ def as_keywords(self, *, ignore=()):
641
641
  """Return a copy of the properties as a dictionary
642
642
 
643
643
  :param ignore:
@@ -844,7 +844,7 @@ class ProjectEdit:
844
844
  bl_rna: typing.Any
845
845
  id_data: typing.Any
846
846
 
847
- def as_keywords(self, ignore=()):
847
+ def as_keywords(self, *, ignore=()):
848
848
  """Return a copy of the properties as a dictionary
849
849
 
850
850
  :param ignore:
@@ -18,7 +18,7 @@ class IMAGE_OT_convert_to_mesh_plane(TextureProperties_MixIn, MaterialProperties
18
18
  id_data: typing.Any
19
19
  t: typing.Any
20
20
 
21
- def as_keywords(self, ignore=()):
21
+ def as_keywords(self, *, ignore=()):
22
22
  """Return a copy of the properties as a dictionary
23
23
 
24
24
  :param ignore:
@@ -299,7 +299,7 @@ class IMAGE_OT_import_as_mesh_planes(
299
299
  """
300
300
  ...
301
301
 
302
- def as_keywords(self, ignore=()):
302
+ def as_keywords(self, *, ignore=()):
303
303
  """Return a copy of the properties as a dictionary
304
304
 
305
305
  :param ignore:
@@ -15,7 +15,7 @@ class MeshMirrorUV:
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 MeshSelectNext:
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 MeshSelectPrev:
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:
@@ -210,7 +210,7 @@ class NODE_OT_add_node(NodeAddOperator):
210
210
  bl_rna: typing.Any
211
211
  id_data: typing.Any
212
212
 
213
- def as_keywords(self, ignore=()):
213
+ def as_keywords(self, *, ignore=()):
214
214
  """Return a copy of the properties as a dictionary
215
215
 
216
216
  :param ignore:
@@ -465,7 +465,7 @@ class NODE_OT_add_repeat_zone(NodeAddOperator, NodeAddZoneOperator):
465
465
  input_node_type: typing.Any
466
466
  output_node_type: typing.Any
467
467
 
468
- def as_keywords(self, ignore=()):
468
+ def as_keywords(self, *, ignore=()):
469
469
  """Return a copy of the properties as a dictionary
470
470
 
471
471
  :param ignore:
@@ -712,7 +712,7 @@ class NODE_OT_add_simulation_zone(NodeAddOperator, NodeAddZoneOperator):
712
712
  input_node_type: typing.Any
713
713
  output_node_type: typing.Any
714
714
 
715
- def as_keywords(self, ignore=()):
715
+ def as_keywords(self, *, ignore=()):
716
716
  """Return a copy of the properties as a dictionary
717
717
 
718
718
  :param ignore:
@@ -957,7 +957,7 @@ class NODE_OT_collapse_hide_unused_toggle:
957
957
  bl_rna: typing.Any
958
958
  id_data: typing.Any
959
959
 
960
- def as_keywords(self, ignore=()):
960
+ def as_keywords(self, *, ignore=()):
961
961
  """Return a copy of the properties as a dictionary
962
962
 
963
963
  :param ignore:
@@ -1171,7 +1171,7 @@ class NODE_OT_interface_item_duplicate(NodeInterfaceOperator):
1171
1171
  bl_rna: typing.Any
1172
1172
  id_data: typing.Any
1173
1173
 
1174
- def as_keywords(self, ignore=()):
1174
+ def as_keywords(self, *, ignore=()):
1175
1175
  """Return a copy of the properties as a dictionary
1176
1176
 
1177
1177
  :param ignore:
@@ -1385,7 +1385,7 @@ class NODE_OT_interface_item_new(NodeInterfaceOperator):
1385
1385
  bl_rna: typing.Any
1386
1386
  id_data: typing.Any
1387
1387
 
1388
- def as_keywords(self, ignore=()):
1388
+ def as_keywords(self, *, ignore=()):
1389
1389
  """Return a copy of the properties as a dictionary
1390
1390
 
1391
1391
  :param ignore:
@@ -1606,7 +1606,7 @@ class NODE_OT_interface_item_remove(NodeInterfaceOperator):
1606
1606
  bl_rna: typing.Any
1607
1607
  id_data: typing.Any
1608
1608
 
1609
- def as_keywords(self, ignore=()):
1609
+ def as_keywords(self, *, ignore=()):
1610
1610
  """Return a copy of the properties as a dictionary
1611
1611
 
1612
1612
  :param ignore:
@@ -1820,7 +1820,7 @@ class NODE_OT_tree_path_parent:
1820
1820
  bl_rna: typing.Any
1821
1821
  id_data: typing.Any
1822
1822
 
1823
- def as_keywords(self, ignore=()):
1823
+ def as_keywords(self, *, ignore=()):
1824
1824
  """Return a copy of the properties as a dictionary
1825
1825
 
1826
1826
  :param ignore:
@@ -15,7 +15,7 @@ class ClearAllRestrictRender:
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:
@@ -222,7 +222,7 @@ class DupliOffsetFromCursor:
222
222
  bl_rna: typing.Any
223
223
  id_data: typing.Any
224
224
 
225
- def as_keywords(self, ignore=()):
225
+ def as_keywords(self, *, ignore=()):
226
226
  """Return a copy of the properties as a dictionary
227
227
 
228
228
  :param ignore:
@@ -429,7 +429,7 @@ class DupliOffsetFromObject:
429
429
  bl_rna: typing.Any
430
430
  id_data: typing.Any
431
431
 
432
- def as_keywords(self, ignore=()):
432
+ def as_keywords(self, *, ignore=()):
433
433
  """Return a copy of the properties as a dictionary
434
434
 
435
435
  :param ignore:
@@ -643,7 +643,7 @@ class DupliOffsetToCursor:
643
643
  bl_rna: typing.Any
644
644
  id_data: typing.Any
645
645
 
646
- def as_keywords(self, ignore=()):
646
+ def as_keywords(self, *, ignore=()):
647
647
  """Return a copy of the properties as a dictionary
648
648
 
649
649
  :param ignore:
@@ -850,7 +850,7 @@ class IsolateTypeRender:
850
850
  bl_rna: typing.Any
851
851
  id_data: typing.Any
852
852
 
853
- def as_keywords(self, ignore=()):
853
+ def as_keywords(self, *, ignore=()):
854
854
  """Return a copy of the properties as a dictionary
855
855
 
856
856
  :param ignore:
@@ -1064,7 +1064,7 @@ class JoinUVs:
1064
1064
  bl_rna: typing.Any
1065
1065
  id_data: typing.Any
1066
1066
 
1067
- def as_keywords(self, ignore=()):
1067
+ def as_keywords(self, *, ignore=()):
1068
1068
  """Return a copy of the properties as a dictionary
1069
1069
 
1070
1070
  :param ignore:
@@ -1278,7 +1278,7 @@ class MakeDupliFace:
1278
1278
  bl_rna: typing.Any
1279
1279
  id_data: typing.Any
1280
1280
 
1281
- def as_keywords(self, ignore=()):
1281
+ def as_keywords(self, *, ignore=()):
1282
1282
  """Return a copy of the properties as a dictionary
1283
1283
 
1284
1284
  :param ignore:
@@ -1485,7 +1485,7 @@ class OBJECT_OT_assign_property_defaults:
1485
1485
  bl_rna: typing.Any
1486
1486
  id_data: typing.Any
1487
1487
 
1488
- def as_keywords(self, ignore=()):
1488
+ def as_keywords(self, *, ignore=()):
1489
1489
  """Return a copy of the properties as a dictionary
1490
1490
 
1491
1491
  :param ignore:
@@ -1706,7 +1706,7 @@ class SelectCamera:
1706
1706
  bl_rna: typing.Any
1707
1707
  id_data: typing.Any
1708
1708
 
1709
- def as_keywords(self, ignore=()):
1709
+ def as_keywords(self, *, ignore=()):
1710
1710
  """Return a copy of the properties as a dictionary
1711
1711
 
1712
1712
  :param ignore:
@@ -1913,7 +1913,7 @@ class SelectHierarchy:
1913
1913
  bl_rna: typing.Any
1914
1914
  id_data: typing.Any
1915
1915
 
1916
- def as_keywords(self, ignore=()):
1916
+ def as_keywords(self, *, ignore=()):
1917
1917
  """Return a copy of the properties as a dictionary
1918
1918
 
1919
1919
  :param ignore:
@@ -2128,7 +2128,7 @@ class SelectPattern:
2128
2128
  bl_rna: typing.Any
2129
2129
  id_data: typing.Any
2130
2130
 
2131
- def as_keywords(self, ignore=()):
2131
+ def as_keywords(self, *, ignore=()):
2132
2132
  """Return a copy of the properties as a dictionary
2133
2133
 
2134
2134
  :param ignore:
@@ -2357,7 +2357,7 @@ class ShapeTransfer:
2357
2357
  bl_rna: typing.Any
2358
2358
  id_data: typing.Any
2359
2359
 
2360
- def as_keywords(self, ignore=()):
2360
+ def as_keywords(self, *, ignore=()):
2361
2361
  """Return a copy of the properties as a dictionary
2362
2362
 
2363
2363
  :param ignore:
@@ -2571,7 +2571,7 @@ class SubdivisionSet:
2571
2571
  bl_rna: typing.Any
2572
2572
  id_data: typing.Any
2573
2573
 
2574
- def as_keywords(self, ignore=()):
2574
+ def as_keywords(self, *, ignore=()):
2575
2575
  """Return a copy of the properties as a dictionary
2576
2576
 
2577
2577
  :param ignore:
@@ -2785,7 +2785,7 @@ class TransformsToDeltas:
2785
2785
  bl_rna: typing.Any
2786
2786
  id_data: typing.Any
2787
2787
 
2788
- def as_keywords(self, ignore=()):
2788
+ def as_keywords(self, *, ignore=()):
2789
2789
  """Return a copy of the properties as a dictionary
2790
2790
 
2791
2791
  :param ignore:
@@ -3020,7 +3020,7 @@ class TransformsToDeltasAnim:
3020
3020
  bl_rna: typing.Any
3021
3021
  id_data: typing.Any
3022
3022
 
3023
- def as_keywords(self, ignore=()):
3023
+ def as_keywords(self, *, ignore=()):
3024
3024
  """Return a copy of the properties as a dictionary
3025
3025
 
3026
3026
  :param ignore:
@@ -15,7 +15,7 @@ class AlignObjects:
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:
@@ -23,7 +23,7 @@ class QuickExplode(ObjectModeOperator):
23
23
  bl_rna: typing.Any
24
24
  id_data: typing.Any
25
25
 
26
- def as_keywords(self, ignore=()):
26
+ def as_keywords(self, *, ignore=()):
27
27
  """Return a copy of the properties as a dictionary
28
28
 
29
29
  :param ignore:
@@ -245,7 +245,7 @@ class QuickFur(ObjectModeOperator):
245
245
  bl_rna: typing.Any
246
246
  id_data: typing.Any
247
247
 
248
- def as_keywords(self, ignore=()):
248
+ def as_keywords(self, *, ignore=()):
249
249
  """Return a copy of the properties as a dictionary
250
250
 
251
251
  :param ignore:
@@ -459,7 +459,7 @@ class QuickLiquid:
459
459
  bl_rna: typing.Any
460
460
  id_data: typing.Any
461
461
 
462
- def as_keywords(self, ignore=()):
462
+ def as_keywords(self, *, ignore=()):
463
463
  """Return a copy of the properties as a dictionary
464
464
 
465
465
  :param ignore:
@@ -666,7 +666,7 @@ class QuickSmoke(ObjectModeOperator):
666
666
  bl_rna: typing.Any
667
667
  id_data: typing.Any
668
668
 
669
- def as_keywords(self, ignore=()):
669
+ def as_keywords(self, *, ignore=()):
670
670
  """Return a copy of the properties as a dictionary
671
671
 
672
672
  :param ignore:
@@ -15,7 +15,7 @@ class RandomizeLocRotSize:
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: