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

Files changed (115) hide show
  1. addon_utils/__init__.pyi +2 -1
  2. bl_console_utils/autocomplete/complete_calltip/__init__.pyi +5 -2
  3. bl_console_utils/autocomplete/complete_import/__init__.pyi +6 -3
  4. bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -1
  5. bl_console_utils/autocomplete/intellisense/__init__.pyi +8 -2
  6. blf/__init__.pyi +2 -1
  7. bmesh/ops/__init__.pyi +110 -53
  8. bmesh/types/__init__.pyi +18 -10
  9. bmesh/utils/__init__.pyi +14 -4
  10. bpy/app/icons/__init__.pyi +4 -1
  11. bpy/app/translations/__init__.pyi +4 -1
  12. bpy/msgbus/__init__.pyi +8 -5
  13. bpy/ops/action/__init__.pyi +38 -138
  14. bpy/ops/anim/__init__.pyi +61 -179
  15. bpy/ops/armature/__init__.pyi +48 -147
  16. bpy/ops/asset/__init__.pyi +16 -71
  17. bpy/ops/boid/__init__.pyi +8 -41
  18. bpy/ops/brush/__init__.pyi +13 -39
  19. bpy/ops/buttons/__init__.pyi +6 -29
  20. bpy/ops/cachefile/__init__.pyi +5 -19
  21. bpy/ops/camera/__init__.pyi +2 -5
  22. bpy/ops/clip/__init__.pyi +92 -290
  23. bpy/ops/cloth/__init__.pyi +1 -3
  24. bpy/ops/collection/__init__.pyi +9 -25
  25. bpy/ops/console/__init__.pyi +21 -79
  26. bpy/ops/constraint/__init__.pyi +18 -45
  27. bpy/ops/curve/__init__.pyi +51 -180
  28. bpy/ops/curves/__init__.pyi +28 -100
  29. bpy/ops/cycles/__init__.pyi +3 -9
  30. bpy/ops/dpaint/__init__.pyi +5 -19
  31. bpy/ops/ed/__init__.pyi +12 -53
  32. bpy/ops/export_anim/__init__.pyi +1 -3
  33. bpy/ops/export_scene/__init__.pyi +2 -5
  34. bpy/ops/extensions/__init__.pyi +34 -110
  35. bpy/ops/file/__init__.pyi +40 -167
  36. bpy/ops/fluid/__init__.pyi +14 -77
  37. bpy/ops/font/__init__.pyi +23 -85
  38. bpy/ops/geometry/__init__.pyi +10 -27
  39. bpy/ops/gizmogroup/__init__.pyi +2 -9
  40. bpy/ops/gpencil/__init__.pyi +8 -32
  41. bpy/ops/graph/__init__.pyi +65 -184
  42. bpy/ops/grease_pencil/__init__.pyi +108 -290
  43. bpy/ops/image/__init__.pyi +49 -154
  44. bpy/ops/import_anim/__init__.pyi +1 -3
  45. bpy/ops/import_curve/__init__.pyi +1 -3
  46. bpy/ops/import_scene/__init__.pyi +2 -4
  47. bpy/ops/info/__init__.pyi +7 -29
  48. bpy/ops/lattice/__init__.pyi +8 -29
  49. bpy/ops/marker/__init__.pyi +11 -31
  50. bpy/ops/mask/__init__.pyi +39 -132
  51. bpy/ops/material/__init__.pyi +3 -19
  52. bpy/ops/mball/__init__.pyi +8 -19
  53. bpy/ops/mesh/__init__.pyi +164 -401
  54. bpy/ops/nla/__init__.pyi +39 -147
  55. bpy/ops/node/__init__.pyi +115 -390
  56. bpy/ops/object/__init__.pyi +237 -630
  57. bpy/ops/outliner/__init__.pyi +71 -263
  58. bpy/ops/paint/__init__.pyi +54 -140
  59. bpy/ops/paintcurve/__init__.pyi +8 -33
  60. bpy/ops/palette/__init__.pyi +7 -27
  61. bpy/ops/particle/__init__.pyi +36 -134
  62. bpy/ops/pose/__init__.pyi +51 -169
  63. bpy/ops/poselib/__init__.pyi +9 -33
  64. bpy/ops/preferences/__init__.pyi +35 -94
  65. bpy/ops/ptcache/__init__.pyi +7 -33
  66. bpy/ops/render/__init__.pyi +13 -37
  67. bpy/ops/rigidbody/__init__.pyi +13 -45
  68. bpy/ops/scene/__init__.pyi +37 -121
  69. bpy/ops/screen/__init__.pyi +39 -137
  70. bpy/ops/script/__init__.pyi +3 -11
  71. bpy/ops/sculpt/__init__.pyi +37 -94
  72. bpy/ops/sculpt_curves/__init__.pyi +4 -10
  73. bpy/ops/sequencer/__init__.pyi +89 -284
  74. bpy/ops/sound/__init__.pyi +7 -23
  75. bpy/ops/spreadsheet/__init__.pyi +4 -15
  76. bpy/ops/surface/__init__.pyi +6 -13
  77. bpy/ops/text/__init__.pyi +43 -175
  78. bpy/ops/text_editor/__init__.pyi +1 -3
  79. bpy/ops/texture/__init__.pyi +4 -21
  80. bpy/ops/transform/__init__.pyi +27 -61
  81. bpy/ops/ui/__init__.pyi +34 -117
  82. bpy/ops/uilist/__init__.pyi +3 -7
  83. bpy/ops/uv/__init__.pyi +49 -134
  84. bpy/ops/view2d/__init__.pyi +14 -39
  85. bpy/ops/view3d/__init__.pyi +67 -232
  86. bpy/ops/wm/__init__.pyi +114 -298
  87. bpy/ops/workspace/__init__.pyi +7 -33
  88. bpy/ops/world/__init__.pyi +2 -11
  89. bpy/path/__init__.pyi +4 -2
  90. bpy/types/__init__.pyi +68 -32
  91. bpy/utils/__init__.pyi +18 -9
  92. bpy_extras/bmesh_utils/__init__.pyi +2 -1
  93. bpy_extras/io_utils/__init__.pyi +7 -2
  94. bpy_extras/mesh_utils/__init__.pyi +19 -7
  95. bpy_extras/view3d_utils/__init__.pyi +2 -2
  96. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
  97. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +115 -115
  98. freestyle/functions/__init__.pyi +16 -4
  99. freestyle/types/__init__.pyi +60 -23
  100. freestyle/utils/ContextFunctions/__init__.pyi +2 -2
  101. gpu/capabilities/__init__.pyi +2 -1
  102. gpu/state/__init__.pyi +2 -2
  103. gpu/types/__init__.pyi +2 -2
  104. gpu_extras/batch/__init__.pyi +6 -3
  105. idprop/types/__init__.pyi +4 -3
  106. imbuf/__init__.pyi +2 -1
  107. imbuf/types/__init__.pyi +5 -2
  108. mathutils/__init__.pyi +25 -14
  109. mathutils/bvhtree/__init__.pyi +8 -7
  110. mathutils/geometry/__init__.pyi +38 -17
  111. mathutils/interpolate/__init__.pyi +2 -1
  112. mathutils/kdtree/__init__.pyi +11 -6
  113. mathutils/noise/__init__.pyi +2 -1
  114. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
  115. {fake_bpy_module-20241207.dist-info → fake_bpy_module-20241209.dist-info}/top_level.txt +0 -0
@@ -1,12 +1,11 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bpy.types
5
4
 
6
5
  def preset_add(
7
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
8
6
  execution_context: int | str | None = None,
9
7
  undo: bool | None = None,
8
+ /,
10
9
  *,
11
10
  name: str = "",
12
11
  remove_name: bool | None = False,
@@ -14,7 +13,6 @@ def preset_add(
14
13
  ):
15
14
  """Add or remove a Cloth Preset
16
15
 
17
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
18
16
  :type execution_context: int | str | None
19
17
  :type undo: bool | None
20
18
  :param name: Name, Name of the preset, used to make the path name
@@ -1,46 +1,38 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bpy.types
5
4
 
6
5
  def create(
7
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
8
6
  execution_context: int | str | None = None,
9
7
  undo: bool | None = None,
8
+ /,
10
9
  *,
11
10
  name: str = "Collection",
12
11
  ):
13
12
  """Create an object collection from selected objects
14
13
 
15
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
16
14
  :type execution_context: int | str | None
17
15
  :type undo: bool | None
18
16
  :param name: Name, Name of the new collection
19
17
  :type name: str
20
18
  """
21
19
 
22
- def export_all(
23
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
24
- execution_context: int | str | None = None,
25
- undo: bool | None = None,
26
- ):
20
+ def export_all(execution_context: int | str | None = None, undo: bool | None = None):
27
21
  """Invoke all configured exporters on this collection
28
22
 
29
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
30
23
  :type execution_context: int | str | None
31
24
  :type undo: bool | None
32
25
  """
33
26
 
34
27
  def exporter_add(
35
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
36
28
  execution_context: int | str | None = None,
37
29
  undo: bool | None = None,
30
+ /,
38
31
  *,
39
32
  name: str = "",
40
33
  ):
41
34
  """Add Exporter
42
35
 
43
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
44
36
  :type execution_context: int | str | None
45
37
  :type undo: bool | None
46
38
  :param name: Name, FileHandler idname
@@ -48,15 +40,14 @@ def exporter_add(
48
40
  """
49
41
 
50
42
  def exporter_export(
51
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
52
43
  execution_context: int | str | None = None,
53
44
  undo: bool | None = None,
45
+ /,
54
46
  *,
55
47
  index: int | None = 0,
56
48
  ):
57
49
  """Invoke the export operation
58
50
 
59
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
60
51
  :type execution_context: int | str | None
61
52
  :type undo: bool | None
62
53
  :param index: Index, Exporter index
@@ -64,15 +55,14 @@ def exporter_export(
64
55
  """
65
56
 
66
57
  def exporter_remove(
67
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
68
58
  execution_context: int | str | None = None,
69
59
  undo: bool | None = None,
60
+ /,
70
61
  *,
71
62
  index: int | None = 0,
72
63
  ):
73
64
  """Remove Exporter
74
65
 
75
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
76
66
  :type execution_context: int | str | None
77
67
  :type undo: bool | None
78
68
  :param index: Index, Exporter index
@@ -80,15 +70,14 @@ def exporter_remove(
80
70
  """
81
71
 
82
72
  def objects_add_active(
83
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
84
73
  execution_context: int | str | None = None,
85
74
  undo: bool | None = None,
75
+ /,
86
76
  *,
87
77
  collection: str | None = "",
88
78
  ):
89
79
  """Add the object to an object collection that contains the active object
90
80
 
91
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
92
81
  :type execution_context: int | str | None
93
82
  :type undo: bool | None
94
83
  :param collection: Collection, The collection to add other selected objects to
@@ -96,15 +85,14 @@ def objects_add_active(
96
85
  """
97
86
 
98
87
  def objects_remove(
99
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
100
88
  execution_context: int | str | None = None,
101
89
  undo: bool | None = None,
90
+ /,
102
91
  *,
103
92
  collection: str | None = "",
104
93
  ):
105
94
  """Remove selected objects from a collection
106
95
 
107
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
108
96
  :type execution_context: int | str | None
109
97
  :type undo: bool | None
110
98
  :param collection: Collection, The collection to remove this object from
@@ -112,15 +100,14 @@ def objects_remove(
112
100
  """
113
101
 
114
102
  def objects_remove_active(
115
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
116
103
  execution_context: int | str | None = None,
117
104
  undo: bool | None = None,
105
+ /,
118
106
  *,
119
107
  collection: str | None = "",
120
108
  ):
121
109
  """Remove the object from an object collection that contains the active object
122
110
 
123
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
124
111
  :type execution_context: int | str | None
125
112
  :type undo: bool | None
126
113
  :param collection: Collection, The collection to remove other selected objects from
@@ -128,13 +115,10 @@ def objects_remove_active(
128
115
  """
129
116
 
130
117
  def objects_remove_all(
131
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
132
- execution_context: int | str | None = None,
133
- undo: bool | None = None,
118
+ execution_context: int | str | None = None, undo: bool | None = None
134
119
  ):
135
120
  """Remove selected objects from all collections
136
121
 
137
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
138
122
  :type execution_context: int | str | None
139
123
  :type undo: bool | None
140
124
  """
@@ -1,43 +1,31 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bpy.types
5
4
 
6
- def autocomplete(
7
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
8
- execution_context: int | str | None = None,
9
- undo: bool | None = None,
10
- ):
5
+ def autocomplete(execution_context: int | str | None = None, undo: bool | None = None):
11
6
  """Evaluate the namespace up until the cursor and give a list of options or complete the name if there is only one
12
7
 
13
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
14
8
  :type execution_context: int | str | None
15
9
  :type undo: bool | None
16
10
  """
17
11
 
18
- def banner(
19
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
20
- execution_context: int | str | None = None,
21
- undo: bool | None = None,
22
- ):
12
+ def banner(execution_context: int | str | None = None, undo: bool | None = None):
23
13
  """Print a message when the terminal initializes
24
14
 
25
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
26
15
  :type execution_context: int | str | None
27
16
  :type undo: bool | None
28
17
  """
29
18
 
30
19
  def clear(
31
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
32
20
  execution_context: int | str | None = None,
33
21
  undo: bool | None = None,
22
+ /,
34
23
  *,
35
24
  scrollback: bool | None = True,
36
25
  history: bool | None = False,
37
26
  ):
38
27
  """Clear text by type
39
28
 
40
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
41
29
  :type execution_context: int | str | None
42
30
  :type undo: bool | None
43
31
  :param scrollback: Scrollback, Clear the scrollback history
@@ -46,28 +34,22 @@ def clear(
46
34
  :type history: bool | None
47
35
  """
48
36
 
49
- def clear_line(
50
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
51
- execution_context: int | str | None = None,
52
- undo: bool | None = None,
53
- ):
37
+ def clear_line(execution_context: int | str | None = None, undo: bool | None = None):
54
38
  """Clear the line and store in history
55
39
 
56
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
57
40
  :type execution_context: int | str | None
58
41
  :type undo: bool | None
59
42
  """
60
43
 
61
44
  def copy(
62
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
63
45
  execution_context: int | str | None = None,
64
46
  undo: bool | None = None,
47
+ /,
65
48
  *,
66
49
  delete: bool | None = False,
67
50
  ):
68
51
  """Copy selected text to clipboard
69
52
 
70
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
71
53
  :type execution_context: int | str | None
72
54
  :type undo: bool | None
73
55
  :param delete: Delete Selection, Whether to delete the selection after copying
@@ -75,21 +57,18 @@ def copy(
75
57
  """
76
58
 
77
59
  def copy_as_script(
78
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
79
- execution_context: int | str | None = None,
80
- undo: bool | None = None,
60
+ execution_context: int | str | None = None, undo: bool | None = None
81
61
  ):
82
62
  """Copy the console contents for use in a script
83
63
 
84
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
85
64
  :type execution_context: int | str | None
86
65
  :type undo: bool | None
87
66
  """
88
67
 
89
68
  def delete(
90
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
91
69
  execution_context: int | str | None = None,
92
70
  undo: bool | None = None,
71
+ /,
93
72
  *,
94
73
  type: typing.Literal[
95
74
  "NEXT_CHARACTER", "PREVIOUS_CHARACTER", "NEXT_WORD", "PREVIOUS_WORD"
@@ -98,7 +77,6 @@ def delete(
98
77
  ):
99
78
  """Delete text by cursor position
100
79
 
101
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
102
80
  :type execution_context: int | str | None
103
81
  :type undo: bool | None
104
82
  :param type: Type, Which part of the text to delete
@@ -106,15 +84,14 @@ def delete(
106
84
  """
107
85
 
108
86
  def execute(
109
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
110
87
  execution_context: int | str | None = None,
111
88
  undo: bool | None = None,
89
+ /,
112
90
  *,
113
91
  interactive: bool | None = False,
114
92
  ):
115
93
  """Execute the current console line as a Python expression
116
94
 
117
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
118
95
  :type execution_context: int | str | None
119
96
  :type undo: bool | None
120
97
  :param interactive: interactive
@@ -122,9 +99,9 @@ def execute(
122
99
  """
123
100
 
124
101
  def history_append(
125
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
126
102
  execution_context: int | str | None = None,
127
103
  undo: bool | None = None,
104
+ /,
128
105
  *,
129
106
  text: str = "",
130
107
  current_character: int | None = 0,
@@ -132,7 +109,6 @@ def history_append(
132
109
  ):
133
110
  """Append history at cursor position
134
111
 
135
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
136
112
  :type execution_context: int | str | None
137
113
  :type undo: bool | None
138
114
  :param text: Text, Text to insert at the cursor position
@@ -144,55 +120,45 @@ def history_append(
144
120
  """
145
121
 
146
122
  def history_cycle(
147
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
148
123
  execution_context: int | str | None = None,
149
124
  undo: bool | None = None,
125
+ /,
150
126
  *,
151
127
  reverse: bool | None = False,
152
128
  ):
153
129
  """Cycle through history
154
130
 
155
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
156
131
  :type execution_context: int | str | None
157
132
  :type undo: bool | None
158
133
  :param reverse: Reverse, Reverse cycle history
159
134
  :type reverse: bool | None
160
135
  """
161
136
 
162
- def indent(
163
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
164
- execution_context: int | str | None = None,
165
- undo: bool | None = None,
166
- ):
137
+ def indent(execution_context: int | str | None = None, undo: bool | None = None):
167
138
  """Add 4 spaces at line beginning
168
139
 
169
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
170
140
  :type execution_context: int | str | None
171
141
  :type undo: bool | None
172
142
  """
173
143
 
174
144
  def indent_or_autocomplete(
175
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
176
- execution_context: int | str | None = None,
177
- undo: bool | None = None,
145
+ execution_context: int | str | None = None, undo: bool | None = None
178
146
  ):
179
147
  """Indent selected text or autocomplete
180
148
 
181
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
182
149
  :type execution_context: int | str | None
183
150
  :type undo: bool | None
184
151
  """
185
152
 
186
153
  def insert(
187
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
188
154
  execution_context: int | str | None = None,
189
155
  undo: bool | None = None,
156
+ /,
190
157
  *,
191
158
  text: str = "",
192
159
  ):
193
160
  """Insert text at cursor position
194
161
 
195
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
196
162
  :type execution_context: int | str | None
197
163
  :type undo: bool | None
198
164
  :param text: Text, Text to insert at the cursor position
@@ -200,15 +166,14 @@ def insert(
200
166
  """
201
167
 
202
168
  def language(
203
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
204
169
  execution_context: int | str | None = None,
205
170
  undo: bool | None = None,
171
+ /,
206
172
  *,
207
173
  language: str = "",
208
174
  ):
209
175
  """Set the current language for this console
210
176
 
211
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
212
177
  :type execution_context: int | str | None
213
178
  :type undo: bool | None
214
179
  :param language: Language
@@ -216,9 +181,9 @@ def language(
216
181
  """
217
182
 
218
183
  def move(
219
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
220
184
  execution_context: int | str | None = None,
221
185
  undo: bool | None = None,
186
+ /,
222
187
  *,
223
188
  type: typing.Literal[
224
189
  "LINE_BEGIN",
@@ -233,7 +198,6 @@ def move(
233
198
  ):
234
199
  """Move cursor position
235
200
 
236
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
237
201
  :type execution_context: int | str | None
238
202
  :type undo: bool | None
239
203
  :param type: Type, Where to move cursor to
@@ -243,15 +207,14 @@ def move(
243
207
  """
244
208
 
245
209
  def paste(
246
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
247
210
  execution_context: int | str | None = None,
248
211
  undo: bool | None = None,
212
+ /,
249
213
  *,
250
214
  selection: bool | None = False,
251
215
  ):
252
216
  """Paste text from clipboard
253
217
 
254
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
255
218
  :type execution_context: int | str | None
256
219
  :type undo: bool | None
257
220
  :param selection: Selection, Paste text selected elsewhere rather than copied (X11/Wayland only)
@@ -259,16 +222,15 @@ def paste(
259
222
  """
260
223
 
261
224
  def scrollback_append(
262
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
263
225
  execution_context: int | str | None = None,
264
226
  undo: bool | None = None,
227
+ /,
265
228
  *,
266
229
  text: str = "",
267
230
  type: typing.Literal["OUTPUT", "INPUT", "INFO", "ERROR"] | None = "OUTPUT",
268
231
  ):
269
232
  """Append scrollback text by type
270
233
 
271
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
272
234
  :type execution_context: int | str | None
273
235
  :type undo: bool | None
274
236
  :param text: Text, Text to insert at the cursor position
@@ -277,50 +239,30 @@ def scrollback_append(
277
239
  :type type: typing.Literal['OUTPUT','INPUT','INFO','ERROR'] | None
278
240
  """
279
241
 
280
- def select_all(
281
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
282
- execution_context: int | str | None = None,
283
- undo: bool | None = None,
284
- ):
242
+ def select_all(execution_context: int | str | None = None, undo: bool | None = None):
285
243
  """Select all the text
286
244
 
287
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
288
245
  :type execution_context: int | str | None
289
246
  :type undo: bool | None
290
247
  """
291
248
 
292
- def select_set(
293
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
294
- execution_context: int | str | None = None,
295
- undo: bool | None = None,
296
- ):
249
+ def select_set(execution_context: int | str | None = None, undo: bool | None = None):
297
250
  """Set the console selection
298
251
 
299
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
300
252
  :type execution_context: int | str | None
301
253
  :type undo: bool | None
302
254
  """
303
255
 
304
- def select_word(
305
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
306
- execution_context: int | str | None = None,
307
- undo: bool | None = None,
308
- ):
256
+ def select_word(execution_context: int | str | None = None, undo: bool | None = None):
309
257
  """Select word at cursor position
310
258
 
311
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
312
259
  :type execution_context: int | str | None
313
260
  :type undo: bool | None
314
261
  """
315
262
 
316
- def unindent(
317
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
318
- execution_context: int | str | None = None,
319
- undo: bool | None = None,
320
- ):
263
+ def unindent(execution_context: int | str | None = None, undo: bool | None = None):
321
264
  """Delete 4 spaces from line beginning
322
265
 
323
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
324
266
  :type execution_context: int | str | None
325
267
  :type undo: bool | None
326
268
  """