fake-bpy-module 20241228__py3-none-any.whl → 20241229__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.

@@ -118,7 +118,7 @@ class UILIST_OT_entry_remove(GenericUIListOperator, bpy.types.Operator):
118
118
 
119
119
  def draw_ui_list(
120
120
  layout: bpy.types.UILayout,
121
- context: bpy.types.Context | None,
121
+ context: bpy.types.Context,
122
122
  class_name: str = "UI_UL_list",
123
123
  *,
124
124
  unique_id: str,
@@ -134,7 +134,7 @@ def draw_ui_list(
134
134
  :param layout: UILayout to draw the list in.
135
135
  :type layout: bpy.types.UILayout
136
136
  :param context: Blender context to get the list data from.
137
- :type context: bpy.types.Context | None
137
+ :type context: bpy.types.Context
138
138
  :param class_name: Name of the UIList class to draw. The default is the UIList class that ships with Blender.
139
139
  :type class_name: str
140
140
  :param unique_id: Unique identifier to differentiate this from other UI lists.
bpy/__init__.pyi CHANGED
@@ -19,7 +19,7 @@ from . import types as types
19
19
  from . import typing as typing
20
20
  from . import utils as utils
21
21
 
22
- context: bpy.types.Context | None
22
+ context: bpy.types.Context
23
23
 
24
24
  data: bpy.types.BlendData
25
25
  """ Access to Blender's internal data