fake-bpy-module 20240904__py3-none-any.whl → 20240905__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.
- bpy/ops/wm/__init__.pyi +4 -0
- bpy/types/__init__.pyi +28663 -28663
- {fake_bpy_module-20240904.dist-info → fake_bpy_module-20240905.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240904.dist-info → fake_bpy_module-20240905.dist-info}/RECORD +6 -6
- {fake_bpy_module-20240904.dist-info → fake_bpy_module-20240905.dist-info}/WHEEL +1 -1
- {fake_bpy_module-20240904.dist-info → fake_bpy_module-20240905.dist-info}/top_level.txt +0 -0
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -603,12 +603,16 @@ def clear_recent_files(
|
|
|
603
603
|
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
604
604
|
execution_context: int | str | None = None,
|
|
605
605
|
undo: bool | None = None,
|
|
606
|
+
*,
|
|
607
|
+
remove: typing.Literal["ALL", "MISSING"] | None = "ALL",
|
|
606
608
|
):
|
|
607
609
|
"""Clear the recent files list
|
|
608
610
|
|
|
609
611
|
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
610
612
|
:type execution_context: int | str | None
|
|
611
613
|
:type undo: bool | None
|
|
614
|
+
:param remove: Remove
|
|
615
|
+
:type remove: typing.Literal['ALL','MISSING'] | None
|
|
612
616
|
"""
|
|
613
617
|
|
|
614
618
|
...
|