fake-bpy-module 20240903__py3-none-any.whl → 20240904__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_internal/__init__.pyi +1 -0
- _bpy_internal/system_info/__init__.pyi +8 -0
- _bpy_internal/system_info/startup/__init__.pyi +8 -0
- bl_operators/anim/__init__.pyi +1 -1
- bl_ui_utils/__init__.pyi +0 -1
- bpy/types/__init__.pyi +42 -22
- {fake_bpy_module-20240903.dist-info → fake_bpy_module-20240904.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240903.dist-info → fake_bpy_module-20240904.dist-info}/RECORD +12 -10
- {fake_bpy_module-20240903.dist-info → fake_bpy_module-20240904.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- {bl_ui_utils/bug_report_url → _bpy_internal/system_info/runtime}/__init__.pyi +0 -0
- {fake_bpy_module-20240903.dist-info → fake_bpy_module-20240904.dist-info}/top_level.txt +0 -0
_bpy_internal/__init__.pyi
CHANGED
|
@@ -5,6 +5,7 @@ from . import addons as addons
|
|
|
5
5
|
from . import extensions as extensions
|
|
6
6
|
from . import freedesktop as freedesktop
|
|
7
7
|
from . import grease_pencil as grease_pencil
|
|
8
|
+
from . import system_info as system_info
|
|
8
9
|
|
|
9
10
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
10
11
|
GenericType2 = typing.TypeVar("GenericType2")
|
bl_operators/anim/__init__.pyi
CHANGED
|
@@ -88,7 +88,7 @@ class ANIM_OT_slot_new_for_id(bpy.types.Operator):
|
|
|
88
88
|
|
|
89
89
|
class ANIM_OT_slot_unassign_from_id(bpy.types.Operator):
|
|
90
90
|
"""Un-assign the assigned Action Slot from an ID.Note that _which_ ID should get this slot unassigned must be set in the
|
|
91
|
-
|
|
91
|
+
"animated_id" context pointer, using:
|
|
92
92
|
"""
|
|
93
93
|
|
|
94
94
|
bl_description: typing.Any
|