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

@@ -10,24 +10,10 @@ class GreasePencilPaintPanel:
10
10
  bl_category: typing.Any
11
11
  bl_context: typing.Any
12
12
 
13
- @classmethod
14
- def poll(cls, context):
15
- """
16
-
17
- :param context:
18
- """
19
-
20
13
  class GreasePencilSculptPanel:
21
14
  bl_category: typing.Any
22
15
  bl_context: typing.Any
23
16
 
24
- @classmethod
25
- def poll(cls, context):
26
- """
27
-
28
- :param context:
29
- """
30
-
31
17
  class GreasePencilV3PaintPanel:
32
18
  bl_category: typing.Any
33
19
  bl_context: typing.Any
@@ -43,24 +29,10 @@ class GreasePencilVertexPanel:
43
29
  bl_category: typing.Any
44
30
  bl_context: typing.Any
45
31
 
46
- @classmethod
47
- def poll(cls, context):
48
- """
49
-
50
- :param context:
51
- """
52
-
53
32
  class GreasePencilWeightPanel:
54
33
  bl_category: typing.Any
55
34
  bl_context: typing.Any
56
35
 
57
- @classmethod
58
- def poll(cls, context):
59
- """
60
-
61
- :param context:
62
- """
63
-
64
36
  class SelectPaintSlotHelper:
65
37
  bl_region_type: typing.Any
66
38
  bl_space_type: typing.Any
bpy/ops/file/__init__.pyi CHANGED
@@ -114,6 +114,7 @@ def directory_new(
114
114
  *,
115
115
  directory: str = "",
116
116
  open: bool | None = False,
117
+ confirm: bool | None = True,
117
118
  ):
118
119
  """Create a new directory
119
120
 
@@ -124,6 +125,8 @@ def directory_new(
124
125
  :type directory: str
125
126
  :param open: Open, Open new directory
126
127
  :type open: bool | None
128
+ :param confirm: Confirm, Prompt for confirmation
129
+ :type confirm: bool | None
127
130
  """
128
131
 
129
132
  def edit_directory_path(