fake-bpy-module 20241208__py3-none-any.whl → 20241209__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 (80) hide show
  1. bpy/ops/action/__init__.pyi +38 -138
  2. bpy/ops/anim/__init__.pyi +61 -179
  3. bpy/ops/armature/__init__.pyi +48 -147
  4. bpy/ops/asset/__init__.pyi +16 -71
  5. bpy/ops/boid/__init__.pyi +8 -41
  6. bpy/ops/brush/__init__.pyi +13 -39
  7. bpy/ops/buttons/__init__.pyi +6 -29
  8. bpy/ops/cachefile/__init__.pyi +5 -19
  9. bpy/ops/camera/__init__.pyi +2 -5
  10. bpy/ops/clip/__init__.pyi +92 -290
  11. bpy/ops/cloth/__init__.pyi +1 -3
  12. bpy/ops/collection/__init__.pyi +9 -25
  13. bpy/ops/console/__init__.pyi +21 -79
  14. bpy/ops/constraint/__init__.pyi +18 -45
  15. bpy/ops/curve/__init__.pyi +51 -180
  16. bpy/ops/curves/__init__.pyi +28 -100
  17. bpy/ops/cycles/__init__.pyi +3 -9
  18. bpy/ops/dpaint/__init__.pyi +5 -19
  19. bpy/ops/ed/__init__.pyi +12 -53
  20. bpy/ops/export_anim/__init__.pyi +1 -3
  21. bpy/ops/export_scene/__init__.pyi +2 -5
  22. bpy/ops/extensions/__init__.pyi +34 -110
  23. bpy/ops/file/__init__.pyi +40 -167
  24. bpy/ops/fluid/__init__.pyi +14 -77
  25. bpy/ops/font/__init__.pyi +23 -85
  26. bpy/ops/geometry/__init__.pyi +10 -27
  27. bpy/ops/gizmogroup/__init__.pyi +2 -9
  28. bpy/ops/gpencil/__init__.pyi +8 -32
  29. bpy/ops/graph/__init__.pyi +65 -184
  30. bpy/ops/grease_pencil/__init__.pyi +108 -290
  31. bpy/ops/image/__init__.pyi +49 -154
  32. bpy/ops/import_anim/__init__.pyi +1 -3
  33. bpy/ops/import_curve/__init__.pyi +1 -3
  34. bpy/ops/import_scene/__init__.pyi +2 -4
  35. bpy/ops/info/__init__.pyi +7 -29
  36. bpy/ops/lattice/__init__.pyi +8 -29
  37. bpy/ops/marker/__init__.pyi +11 -31
  38. bpy/ops/mask/__init__.pyi +39 -132
  39. bpy/ops/material/__init__.pyi +3 -19
  40. bpy/ops/mball/__init__.pyi +8 -19
  41. bpy/ops/mesh/__init__.pyi +164 -401
  42. bpy/ops/nla/__init__.pyi +39 -147
  43. bpy/ops/node/__init__.pyi +115 -390
  44. bpy/ops/object/__init__.pyi +237 -630
  45. bpy/ops/outliner/__init__.pyi +71 -263
  46. bpy/ops/paint/__init__.pyi +54 -140
  47. bpy/ops/paintcurve/__init__.pyi +8 -33
  48. bpy/ops/palette/__init__.pyi +7 -27
  49. bpy/ops/particle/__init__.pyi +36 -134
  50. bpy/ops/pose/__init__.pyi +51 -169
  51. bpy/ops/poselib/__init__.pyi +9 -33
  52. bpy/ops/preferences/__init__.pyi +35 -94
  53. bpy/ops/ptcache/__init__.pyi +7 -33
  54. bpy/ops/render/__init__.pyi +13 -37
  55. bpy/ops/rigidbody/__init__.pyi +13 -45
  56. bpy/ops/scene/__init__.pyi +37 -121
  57. bpy/ops/screen/__init__.pyi +39 -137
  58. bpy/ops/script/__init__.pyi +3 -11
  59. bpy/ops/sculpt/__init__.pyi +37 -94
  60. bpy/ops/sculpt_curves/__init__.pyi +4 -10
  61. bpy/ops/sequencer/__init__.pyi +89 -284
  62. bpy/ops/sound/__init__.pyi +7 -23
  63. bpy/ops/spreadsheet/__init__.pyi +4 -15
  64. bpy/ops/surface/__init__.pyi +6 -13
  65. bpy/ops/text/__init__.pyi +43 -175
  66. bpy/ops/text_editor/__init__.pyi +1 -3
  67. bpy/ops/texture/__init__.pyi +4 -21
  68. bpy/ops/transform/__init__.pyi +27 -61
  69. bpy/ops/ui/__init__.pyi +34 -117
  70. bpy/ops/uilist/__init__.pyi +3 -7
  71. bpy/ops/uv/__init__.pyi +49 -134
  72. bpy/ops/view2d/__init__.pyi +14 -39
  73. bpy/ops/view3d/__init__.pyi +67 -232
  74. bpy/ops/wm/__init__.pyi +114 -298
  75. bpy/ops/workspace/__init__.pyi +7 -33
  76. bpy/ops/world/__init__.pyi +2 -11
  77. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
  78. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +80 -80
  79. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
  80. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
@@ -4,45 +4,36 @@ import typing_extensions
4
4
  import bpy.types
5
5
 
6
6
  def dummy_progress(
7
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
8
- execution_context: int | str | None = None,
9
- undo: bool | None = None,
7
+ execution_context: int | str | None = None, undo: bool | None = None
10
8
  ):
11
9
  """Undocumented, consider contributing.
12
10
 
13
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
14
11
  :type execution_context: int | str | None
15
12
  :type undo: bool | None
16
13
  """
17
14
 
18
15
  def package_disable(
19
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
20
- execution_context: int | str | None = None,
21
- undo: bool | None = None,
16
+ execution_context: int | str | None = None, undo: bool | None = None
22
17
  ):
23
18
  """Turn off this extension
24
19
 
25
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
26
20
  :type execution_context: int | str | None
27
21
  :type undo: bool | None
28
22
  """
29
23
 
30
24
  def package_enable_not_installed(
31
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
32
- execution_context: int | str | None = None,
33
- undo: bool | None = None,
25
+ execution_context: int | str | None = None, undo: bool | None = None
34
26
  ):
35
27
  """Turn on this extension
36
28
 
37
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
38
29
  :type execution_context: int | str | None
39
30
  :type undo: bool | None
40
31
  """
41
32
 
42
33
  def package_install(
43
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
44
34
  execution_context: int | str | None = None,
45
35
  undo: bool | None = None,
36
+ /,
46
37
  *,
47
38
  repo_directory: str = "",
48
39
  repo_index: int | None = -1,
@@ -53,7 +44,6 @@ def package_install(
53
44
  ):
54
45
  """Download and install the extension
55
46
 
56
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
57
47
  :type execution_context: int | str | None
58
48
  :type undo: bool | None
59
49
  :param repo_directory: Repo Directory
@@ -71,9 +61,9 @@ def package_install(
71
61
  """
72
62
 
73
63
  def package_install_files(
74
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
75
64
  execution_context: int | str | None = None,
76
65
  undo: bool | None = None,
66
+ /,
77
67
  *,
78
68
  filter_glob: str = "*.zip;*.py",
79
69
  directory: str = "",
@@ -88,7 +78,6 @@ def package_install_files(
88
78
  ):
89
79
  """Install extensions from files into a locally managed repository
90
80
 
91
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
92
81
  :type execution_context: int | str | None
93
82
  :type undo: bool | None
94
83
  :param filter_glob: filter_glob
@@ -112,15 +101,14 @@ def package_install_files(
112
101
  """
113
102
 
114
103
  def package_install_marked(
115
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
116
104
  execution_context: int | str | None = None,
117
105
  undo: bool | None = None,
106
+ /,
118
107
  *,
119
108
  enable_on_install: bool | None = True,
120
109
  ):
121
110
  """Undocumented, consider contributing.
122
111
 
123
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
124
112
  :type execution_context: int | str | None
125
113
  :type undo: bool | None
126
114
  :param enable_on_install: Enable on Install, Enable after installing
@@ -128,16 +116,15 @@ def package_install_marked(
128
116
  """
129
117
 
130
118
  def package_mark_clear(
131
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
132
119
  execution_context: int | str | None = None,
133
120
  undo: bool | None = None,
121
+ /,
134
122
  *,
135
123
  pkg_id: str = "",
136
124
  repo_index: int | None = -1,
137
125
  ):
138
126
  """Undocumented, consider contributing.
139
127
 
140
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
141
128
  :type execution_context: int | str | None
142
129
  :type undo: bool | None
143
130
  :param pkg_id: Package ID
@@ -147,28 +134,24 @@ def package_mark_clear(
147
134
  """
148
135
 
149
136
  def package_mark_clear_all(
150
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
151
- execution_context: int | str | None = None,
152
- undo: bool | None = None,
137
+ execution_context: int | str | None = None, undo: bool | None = None
153
138
  ):
154
139
  """Undocumented, consider contributing.
155
140
 
156
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
157
141
  :type execution_context: int | str | None
158
142
  :type undo: bool | None
159
143
  """
160
144
 
161
145
  def package_mark_set(
162
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
163
146
  execution_context: int | str | None = None,
164
147
  undo: bool | None = None,
148
+ /,
165
149
  *,
166
150
  pkg_id: str = "",
167
151
  repo_index: int | None = -1,
168
152
  ):
169
153
  """Undocumented, consider contributing.
170
154
 
171
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
172
155
  :type execution_context: int | str | None
173
156
  :type undo: bool | None
174
157
  :param pkg_id: Package ID
@@ -178,40 +161,33 @@ def package_mark_set(
178
161
  """
179
162
 
180
163
  def package_mark_set_all(
181
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
182
- execution_context: int | str | None = None,
183
- undo: bool | None = None,
164
+ execution_context: int | str | None = None, undo: bool | None = None
184
165
  ):
185
166
  """Undocumented, consider contributing.
186
167
 
187
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
188
168
  :type execution_context: int | str | None
189
169
  :type undo: bool | None
190
170
  """
191
171
 
192
172
  def package_obsolete_marked(
193
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
194
- execution_context: int | str | None = None,
195
- undo: bool | None = None,
173
+ execution_context: int | str | None = None, undo: bool | None = None
196
174
  ):
197
175
  """Zeroes package versions, useful for development - to test upgrading
198
176
 
199
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
200
177
  :type execution_context: int | str | None
201
178
  :type undo: bool | None
202
179
  """
203
180
 
204
181
  def package_show_clear(
205
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
206
182
  execution_context: int | str | None = None,
207
183
  undo: bool | None = None,
184
+ /,
208
185
  *,
209
186
  pkg_id: str = "",
210
187
  repo_index: int | None = -1,
211
188
  ):
212
189
  """Undocumented, consider contributing.
213
190
 
214
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
215
191
  :type execution_context: int | str | None
216
192
  :type undo: bool | None
217
193
  :param pkg_id: Package ID
@@ -221,16 +197,15 @@ def package_show_clear(
221
197
  """
222
198
 
223
199
  def package_show_set(
224
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
225
200
  execution_context: int | str | None = None,
226
201
  undo: bool | None = None,
202
+ /,
227
203
  *,
228
204
  pkg_id: str = "",
229
205
  repo_index: int | None = -1,
230
206
  ):
231
207
  """Undocumented, consider contributing.
232
208
 
233
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
234
209
  :type execution_context: int | str | None
235
210
  :type undo: bool | None
236
211
  :param pkg_id: Package ID
@@ -240,16 +215,15 @@ def package_show_set(
240
215
  """
241
216
 
242
217
  def package_show_settings(
243
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
244
218
  execution_context: int | str | None = None,
245
219
  undo: bool | None = None,
220
+ /,
246
221
  *,
247
222
  pkg_id: str = "",
248
223
  repo_index: int | None = -1,
249
224
  ):
250
225
  """Undocumented, consider contributing.
251
226
 
252
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
253
227
  :type execution_context: int | str | None
254
228
  :type undo: bool | None
255
229
  :param pkg_id: Package ID
@@ -259,16 +233,15 @@ def package_show_settings(
259
233
  """
260
234
 
261
235
  def package_theme_disable(
262
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
263
236
  execution_context: int | str | None = None,
264
237
  undo: bool | None = None,
238
+ /,
265
239
  *,
266
240
  pkg_id: str = "",
267
241
  repo_index: int | None = -1,
268
242
  ):
269
243
  """Turn off this theme
270
244
 
271
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
272
245
  :type execution_context: int | str | None
273
246
  :type undo: bool | None
274
247
  :param pkg_id: Package ID
@@ -278,16 +251,15 @@ def package_theme_disable(
278
251
  """
279
252
 
280
253
  def package_theme_enable(
281
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
282
254
  execution_context: int | str | None = None,
283
255
  undo: bool | None = None,
256
+ /,
284
257
  *,
285
258
  pkg_id: str = "",
286
259
  repo_index: int | None = -1,
287
260
  ):
288
261
  """Turn off this theme
289
262
 
290
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
291
263
  :type execution_context: int | str | None
292
264
  :type undo: bool | None
293
265
  :param pkg_id: Package ID
@@ -297,9 +269,9 @@ def package_theme_enable(
297
269
  """
298
270
 
299
271
  def package_uninstall(
300
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
301
272
  execution_context: int | str | None = None,
302
273
  undo: bool | None = None,
274
+ /,
303
275
  *,
304
276
  repo_directory: str = "",
305
277
  repo_index: int | None = -1,
@@ -307,7 +279,6 @@ def package_uninstall(
307
279
  ):
308
280
  """Disable and uninstall the extension
309
281
 
310
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
311
282
  :type execution_context: int | str | None
312
283
  :type undo: bool | None
313
284
  :param repo_directory: Repo Directory
@@ -319,39 +290,32 @@ def package_uninstall(
319
290
  """
320
291
 
321
292
  def package_uninstall_marked(
322
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
323
- execution_context: int | str | None = None,
324
- undo: bool | None = None,
293
+ execution_context: int | str | None = None, undo: bool | None = None
325
294
  ):
326
295
  """Undocumented, consider contributing.
327
296
 
328
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
329
297
  :type execution_context: int | str | None
330
298
  :type undo: bool | None
331
299
  """
332
300
 
333
301
  def package_uninstall_system(
334
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
335
- execution_context: int | str | None = None,
336
- undo: bool | None = None,
302
+ execution_context: int | str | None = None, undo: bool | None = None
337
303
  ):
338
304
  """Undocumented, consider contributing.
339
305
 
340
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
341
306
  :type execution_context: int | str | None
342
307
  :type undo: bool | None
343
308
  """
344
309
 
345
310
  def package_upgrade_all(
346
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
347
311
  execution_context: int | str | None = None,
348
312
  undo: bool | None = None,
313
+ /,
349
314
  *,
350
315
  use_active_only: bool | None = False,
351
316
  ):
352
317
  """Upgrade all the extensions to their latest version for all the remote repositories
353
318
 
354
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
355
319
  :type execution_context: int | str | None
356
320
  :type undo: bool | None
357
321
  :param use_active_only: Active Only, Only sync the active repository
@@ -359,56 +323,46 @@ def package_upgrade_all(
359
323
  """
360
324
 
361
325
  def repo_enable_from_drop(
362
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
363
326
  execution_context: int | str | None = None,
364
327
  undo: bool | None = None,
328
+ /,
365
329
  *,
366
330
  repo_index: int | None = -1,
367
331
  ):
368
332
  """Undocumented, consider contributing.
369
333
 
370
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
371
334
  :type execution_context: int | str | None
372
335
  :type undo: bool | None
373
336
  :param repo_index: Repo Index
374
337
  :type repo_index: int | None
375
338
  """
376
339
 
377
- def repo_lock_all(
378
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
379
- execution_context: int | str | None = None,
380
- undo: bool | None = None,
381
- ):
340
+ def repo_lock_all(execution_context: int | str | None = None, undo: bool | None = None):
382
341
  """Lock repositories - to test locking
383
342
 
384
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
385
343
  :type execution_context: int | str | None
386
344
  :type undo: bool | None
387
345
  """
388
346
 
389
347
  def repo_refresh_all(
390
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
391
- execution_context: int | str | None = None,
392
- undo: bool | None = None,
348
+ execution_context: int | str | None = None, undo: bool | None = None
393
349
  ):
394
350
  """Scan extension & legacy add-ons for changes to modules & meta-data (similar to restarting). Any issues are reported as warnings
395
351
 
396
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
397
352
  :type execution_context: int | str | None
398
353
  :type undo: bool | None
399
354
  """
400
355
 
401
356
  def repo_sync(
402
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
403
357
  execution_context: int | str | None = None,
404
358
  undo: bool | None = None,
359
+ /,
405
360
  *,
406
361
  repo_directory: str = "",
407
362
  repo_index: int | None = -1,
408
363
  ):
409
364
  """Undocumented, consider contributing.
410
365
 
411
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
412
366
  :type execution_context: int | str | None
413
367
  :type undo: bool | None
414
368
  :param repo_directory: Repo Directory
@@ -418,128 +372,98 @@ def repo_sync(
418
372
  """
419
373
 
420
374
  def repo_sync_all(
421
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
422
375
  execution_context: int | str | None = None,
423
376
  undo: bool | None = None,
377
+ /,
424
378
  *,
425
379
  use_active_only: bool | None = False,
426
380
  ):
427
381
  """Refresh the list of extensions for all the remote repositories
428
382
 
429
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
430
383
  :type execution_context: int | str | None
431
384
  :type undo: bool | None
432
385
  :param use_active_only: Active Only, Only sync the active repository
433
386
  :type use_active_only: bool | None
434
387
  """
435
388
 
436
- def repo_unlock(
437
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
438
- execution_context: int | str | None = None,
439
- undo: bool | None = None,
440
- ):
389
+ def repo_unlock(execution_context: int | str | None = None, undo: bool | None = None):
441
390
  """Remove the repository file-system lock
442
391
 
443
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
444
392
  :type execution_context: int | str | None
445
393
  :type undo: bool | None
446
394
  """
447
395
 
448
396
  def repo_unlock_all(
449
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
450
- execution_context: int | str | None = None,
451
- undo: bool | None = None,
397
+ execution_context: int | str | None = None, undo: bool | None = None
452
398
  ):
453
399
  """Unlock repositories - to test unlocking
454
400
 
455
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
456
401
  :type execution_context: int | str | None
457
402
  :type undo: bool | None
458
403
  """
459
404
 
460
- def status_clear(
461
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
462
- execution_context: int | str | None = None,
463
- undo: bool | None = None,
464
- ):
405
+ def status_clear(execution_context: int | str | None = None, undo: bool | None = None):
465
406
  """Undocumented, consider contributing.
466
407
 
467
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
468
408
  :type execution_context: int | str | None
469
409
  :type undo: bool | None
470
410
  """
471
411
 
472
412
  def status_clear_errors(
473
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
474
- execution_context: int | str | None = None,
475
- undo: bool | None = None,
413
+ execution_context: int | str | None = None, undo: bool | None = None
476
414
  ):
477
415
  """Undocumented, consider contributing.
478
416
 
479
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
480
417
  :type execution_context: int | str | None
481
418
  :type undo: bool | None
482
419
  """
483
420
 
484
421
  def userpref_allow_online(
485
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
486
- execution_context: int | str | None = None,
487
- undo: bool | None = None,
422
+ execution_context: int | str | None = None, undo: bool | None = None
488
423
  ):
489
424
  """Allow internet access. Blender may access configured online extension repositories. Installed third party add-ons may access the internet for their own functionality
490
425
 
491
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
492
426
  :type execution_context: int | str | None
493
427
  :type undo: bool | None
494
428
  """
495
429
 
496
430
  def userpref_allow_online_popup(
497
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
498
- execution_context: int | str | None = None,
499
- undo: bool | None = None,
431
+ execution_context: int | str | None = None, undo: bool | None = None
500
432
  ):
501
433
  """Allow internet access. Blender may access configured online extension repositories. Installed third party add-ons may access the internet for their own functionality
502
434
 
503
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
504
435
  :type execution_context: int | str | None
505
436
  :type undo: bool | None
506
437
  """
507
438
 
508
439
  def userpref_show_for_update(
509
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
510
- execution_context: int | str | None = None,
511
- undo: bool | None = None,
440
+ execution_context: int | str | None = None, undo: bool | None = None
512
441
  ):
513
442
  """Open extensions preferences
514
443
 
515
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
516
444
  :type execution_context: int | str | None
517
445
  :type undo: bool | None
518
446
  """
519
447
 
520
448
  def userpref_show_online(
521
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
522
- execution_context: int | str | None = None,
523
- undo: bool | None = None,
449
+ execution_context: int | str | None = None, undo: bool | None = None
524
450
  ):
525
451
  """Show system preferences "Network" panel to allow online access
526
452
 
527
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
528
453
  :type execution_context: int | str | None
529
454
  :type undo: bool | None
530
455
  """
531
456
 
532
457
  def userpref_tags_set(
533
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
534
458
  execution_context: int | str | None = None,
535
459
  undo: bool | None = None,
460
+ /,
536
461
  *,
537
462
  value: bool | None = False,
538
463
  data_path: str = "",
539
464
  ):
540
465
  """Set the value of all tags
541
466
 
542
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
543
467
  :type execution_context: int | str | None
544
468
  :type undo: bool | None
545
469
  :param value: Value, Enable or disable all tags