fake-bpy-module 20241204__py3-none-any.whl → 20241206__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.
- bl_ui/space_userpref/__init__.pyi +2 -4
- bpy/types/__init__.pyi +853 -1
- {fake_bpy_module-20241204.dist-info → fake_bpy_module-20241206.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241204.dist-info → fake_bpy_module-20241206.dist-info}/RECORD +7 -7
- gpu_extras/batch/__init__.pyi +3 -2
- {fake_bpy_module-20241204.dist-info → fake_bpy_module-20241206.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241204.dist-info → fake_bpy_module-20241206.dist-info}/top_level.txt +0 -0
|
@@ -74,8 +74,6 @@ class NavigationPanel:
|
|
|
74
74
|
bl_space_type: typing.Any
|
|
75
75
|
|
|
76
76
|
class PreferenceThemeSpacePanel:
|
|
77
|
-
ui_delimiters: typing.Any
|
|
78
|
-
|
|
79
77
|
def draw(self, context):
|
|
80
78
|
"""
|
|
81
79
|
|
|
@@ -2398,10 +2396,10 @@ class USERPREF_PT_system_display_graphics(
|
|
|
2398
2396
|
"""
|
|
2399
2397
|
|
|
2400
2398
|
@classmethod
|
|
2401
|
-
def poll(cls,
|
|
2399
|
+
def poll(cls, _context):
|
|
2402
2400
|
"""
|
|
2403
2401
|
|
|
2404
|
-
:param
|
|
2402
|
+
:param _context:
|
|
2405
2403
|
"""
|
|
2406
2404
|
|
|
2407
2405
|
class USERPREF_PT_system_memory(CenterAlignMixIn, SystemPanel, bpy.types.Panel):
|