fake-bpy-module 20241208__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 (80) hide show
  1. bpy/ops/action/__init__.pyi +38 -138
  2. bpy/ops/anim/__init__.pyi +61 -179
  3. bpy/ops/armature/__init__.pyi +48 -147
  4. bpy/ops/asset/__init__.pyi +16 -71
  5. bpy/ops/boid/__init__.pyi +8 -41
  6. bpy/ops/brush/__init__.pyi +13 -39
  7. bpy/ops/buttons/__init__.pyi +6 -29
  8. bpy/ops/cachefile/__init__.pyi +5 -19
  9. bpy/ops/camera/__init__.pyi +2 -5
  10. bpy/ops/clip/__init__.pyi +92 -290
  11. bpy/ops/cloth/__init__.pyi +1 -3
  12. bpy/ops/collection/__init__.pyi +9 -25
  13. bpy/ops/console/__init__.pyi +21 -79
  14. bpy/ops/constraint/__init__.pyi +18 -45
  15. bpy/ops/curve/__init__.pyi +51 -180
  16. bpy/ops/curves/__init__.pyi +28 -100
  17. bpy/ops/cycles/__init__.pyi +3 -9
  18. bpy/ops/dpaint/__init__.pyi +5 -19
  19. bpy/ops/ed/__init__.pyi +12 -53
  20. bpy/ops/export_anim/__init__.pyi +1 -3
  21. bpy/ops/export_scene/__init__.pyi +2 -5
  22. bpy/ops/extensions/__init__.pyi +34 -110
  23. bpy/ops/file/__init__.pyi +40 -167
  24. bpy/ops/fluid/__init__.pyi +14 -77
  25. bpy/ops/font/__init__.pyi +23 -85
  26. bpy/ops/geometry/__init__.pyi +10 -27
  27. bpy/ops/gizmogroup/__init__.pyi +2 -9
  28. bpy/ops/gpencil/__init__.pyi +8 -32
  29. bpy/ops/graph/__init__.pyi +65 -184
  30. bpy/ops/grease_pencil/__init__.pyi +108 -290
  31. bpy/ops/image/__init__.pyi +49 -154
  32. bpy/ops/import_anim/__init__.pyi +1 -3
  33. bpy/ops/import_curve/__init__.pyi +1 -3
  34. bpy/ops/import_scene/__init__.pyi +2 -4
  35. bpy/ops/info/__init__.pyi +7 -29
  36. bpy/ops/lattice/__init__.pyi +8 -29
  37. bpy/ops/marker/__init__.pyi +11 -31
  38. bpy/ops/mask/__init__.pyi +39 -132
  39. bpy/ops/material/__init__.pyi +3 -19
  40. bpy/ops/mball/__init__.pyi +8 -19
  41. bpy/ops/mesh/__init__.pyi +164 -401
  42. bpy/ops/nla/__init__.pyi +39 -147
  43. bpy/ops/node/__init__.pyi +115 -390
  44. bpy/ops/object/__init__.pyi +237 -630
  45. bpy/ops/outliner/__init__.pyi +71 -263
  46. bpy/ops/paint/__init__.pyi +54 -140
  47. bpy/ops/paintcurve/__init__.pyi +8 -33
  48. bpy/ops/palette/__init__.pyi +7 -27
  49. bpy/ops/particle/__init__.pyi +36 -134
  50. bpy/ops/pose/__init__.pyi +51 -169
  51. bpy/ops/poselib/__init__.pyi +9 -33
  52. bpy/ops/preferences/__init__.pyi +35 -94
  53. bpy/ops/ptcache/__init__.pyi +7 -33
  54. bpy/ops/render/__init__.pyi +13 -37
  55. bpy/ops/rigidbody/__init__.pyi +13 -45
  56. bpy/ops/scene/__init__.pyi +37 -121
  57. bpy/ops/screen/__init__.pyi +39 -137
  58. bpy/ops/script/__init__.pyi +3 -11
  59. bpy/ops/sculpt/__init__.pyi +37 -94
  60. bpy/ops/sculpt_curves/__init__.pyi +4 -10
  61. bpy/ops/sequencer/__init__.pyi +89 -284
  62. bpy/ops/sound/__init__.pyi +7 -23
  63. bpy/ops/spreadsheet/__init__.pyi +4 -15
  64. bpy/ops/surface/__init__.pyi +6 -13
  65. bpy/ops/text/__init__.pyi +43 -175
  66. bpy/ops/text_editor/__init__.pyi +1 -3
  67. bpy/ops/texture/__init__.pyi +4 -21
  68. bpy/ops/transform/__init__.pyi +27 -61
  69. bpy/ops/ui/__init__.pyi +34 -117
  70. bpy/ops/uilist/__init__.pyi +3 -7
  71. bpy/ops/uv/__init__.pyi +49 -134
  72. bpy/ops/view2d/__init__.pyi +14 -39
  73. bpy/ops/view3d/__init__.pyi +67 -232
  74. bpy/ops/wm/__init__.pyi +114 -298
  75. bpy/ops/workspace/__init__.pyi +7 -33
  76. bpy/ops/world/__init__.pyi +2 -11
  77. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/METADATA +1 -1
  78. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/RECORD +80 -80
  79. {fake_bpy_module-20241208.dist-info → fake_bpy_module-20241209.dist-info}/WHEEL +0 -0
  80. {fake_bpy_module-20241208.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 bvh(
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
  filepath: str = "",
12
11
  filter_glob: str = "*.bvh",
@@ -26,7 +25,6 @@ def bvh(
26
25
  ):
27
26
  """Load a BVH motion capture file
28
27
 
29
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
30
28
  :type execution_context: int | str | None
31
29
  :type undo: bool | None
32
30
  :param filepath: File Path, Filepath used for importing the file
@@ -1,19 +1,17 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bpy.types
5
4
 
6
5
  def svg(
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
  filepath: str = "",
12
11
  filter_glob: str = "*.svg",
13
12
  ):
14
13
  """Load a SVG file
15
14
 
16
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
17
15
  :type execution_context: int | str | None
18
16
  :type undo: bool | None
19
17
  :param filepath: File Path, Filepath used for importing the file
@@ -4,9 +4,9 @@ import typing_extensions
4
4
  import bpy.types
5
5
 
6
6
  def fbx(
7
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
8
7
  execution_context: int | str | None = None,
9
8
  undo: bool | None = None,
9
+ /,
10
10
  *,
11
11
  filepath: str = "",
12
12
  directory: str = "",
@@ -38,7 +38,6 @@ def fbx(
38
38
  ):
39
39
  """Load a FBX file
40
40
 
41
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
42
41
  :type execution_context: int | str | None
43
42
  :type undo: bool | None
44
43
  :param filepath: File Path, Filepath used for importing the file
@@ -111,9 +110,9 @@ def fbx(
111
110
  """
112
111
 
113
112
  def gltf(
114
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
115
113
  execution_context: int | str | None = None,
116
114
  undo: bool | None = None,
115
+ /,
117
116
  *,
118
117
  filepath: str = "",
119
118
  export_import_convert_lighting_mode: typing.Literal["SPEC", "COMPAT", "RAW"]
@@ -136,7 +135,6 @@ def gltf(
136
135
  ):
137
136
  """Load a glTF 2.0 file
138
137
 
139
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
140
138
  :type execution_context: int | str | None
141
139
  :type undo: bool | None
142
140
  :param filepath: File Path, Filepath used for importing the file
bpy/ops/info/__init__.pyi CHANGED
@@ -1,66 +1,46 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bpy.types
5
4
 
6
- def report_copy(
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 report_copy(execution_context: int | str | None = None, undo: bool | None = None):
11
6
  """Copy selected reports to clipboard
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 report_delete(
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 report_delete(execution_context: int | str | None = None, undo: bool | None = None):
23
13
  """Delete selected reports
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
- def report_replay(
31
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
32
- execution_context: int | str | None = None,
33
- undo: bool | None = None,
34
- ):
19
+ def report_replay(execution_context: int | str | None = None, undo: bool | None = None):
35
20
  """Replay selected reports
36
21
 
37
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
38
22
  :type execution_context: int | str | None
39
23
  :type undo: bool | None
40
24
  """
41
25
 
42
26
  def reports_display_update(
43
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
44
- execution_context: int | str | None = None,
45
- undo: bool | None = None,
27
+ execution_context: int | str | None = None, undo: bool | None = None
46
28
  ):
47
29
  """Update the display of reports in Blender UI (internal use)
48
30
 
49
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
50
31
  :type execution_context: int | str | None
51
32
  :type undo: bool | None
52
33
  """
53
34
 
54
35
  def select_all(
55
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
56
36
  execution_context: int | str | None = None,
57
37
  undo: bool | None = None,
38
+ /,
58
39
  *,
59
40
  action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "SELECT",
60
41
  ):
61
42
  """Change selection of all visible reports
62
43
 
63
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
64
44
  :type execution_context: int | str | None
65
45
  :type undo: bool | None
66
46
  :param action: Action, Selection action to execute
@@ -80,9 +60,9 @@ def select_all(
80
60
  """
81
61
 
82
62
  def select_box(
83
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
84
63
  execution_context: int | str | None = None,
85
64
  undo: bool | None = None,
65
+ /,
86
66
  *,
87
67
  xmin: int | None = 0,
88
68
  xmax: int | None = 0,
@@ -93,7 +73,6 @@ def select_box(
93
73
  ):
94
74
  """Toggle box selection
95
75
 
96
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
97
76
  :type execution_context: int | str | None
98
77
  :type undo: bool | None
99
78
  :param xmin: X Min
@@ -120,16 +99,15 @@ def select_box(
120
99
  """
121
100
 
122
101
  def select_pick(
123
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
124
102
  execution_context: int | str | None = None,
125
103
  undo: bool | None = None,
104
+ /,
126
105
  *,
127
106
  report_index: int | None = 0,
128
107
  extend: bool | None = False,
129
108
  ):
130
109
  """Select reports by index
131
110
 
132
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
133
111
  :type execution_context: int | str | None
134
112
  :type undo: bool | None
135
113
  :param report_index: Report, Index of the report
@@ -1,47 +1,39 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bpy.types
5
4
  import bpy.typing
6
5
 
7
6
  def flip(
8
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
9
7
  execution_context: int | str | None = None,
10
8
  undo: bool | None = None,
9
+ /,
11
10
  *,
12
11
  axis: typing.Literal["U", "V", "W"] | None = "U",
13
12
  ):
14
13
  """Mirror all control points without inverting the lattice deform
15
14
 
16
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
17
15
  :type execution_context: int | str | None
18
16
  :type undo: bool | None
19
17
  :param axis: Flip Axis, Coordinates along this axis get flipped
20
18
  :type axis: typing.Literal['U','V','W'] | None
21
19
  """
22
20
 
23
- def make_regular(
24
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
25
- execution_context: int | str | None = None,
26
- undo: bool | None = None,
27
- ):
21
+ def make_regular(execution_context: int | str | None = None, undo: bool | None = None):
28
22
  """Set UVW control points a uniform distance apart
29
23
 
30
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
31
24
  :type execution_context: int | str | None
32
25
  :type undo: bool | None
33
26
  """
34
27
 
35
28
  def select_all(
36
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
37
29
  execution_context: int | str | None = None,
38
30
  undo: bool | None = None,
31
+ /,
39
32
  *,
40
33
  action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
41
34
  ):
42
35
  """Change selection of all UVW control points
43
36
 
44
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
45
37
  :type execution_context: int | str | None
46
38
  :type undo: bool | None
47
39
  :param action: Action, Selection action to execute
@@ -60,29 +52,23 @@ def select_all(
60
52
  :type action: typing.Literal['TOGGLE','SELECT','DESELECT','INVERT'] | None
61
53
  """
62
54
 
63
- def select_less(
64
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
65
- execution_context: int | str | None = None,
66
- undo: bool | None = None,
67
- ):
55
+ def select_less(execution_context: int | str | None = None, undo: bool | None = None):
68
56
  """Deselect vertices at the boundary of each selection region
69
57
 
70
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
71
58
  :type execution_context: int | str | None
72
59
  :type undo: bool | None
73
60
  """
74
61
 
75
62
  def select_mirror(
76
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
77
63
  execution_context: int | str | None = None,
78
64
  undo: bool | None = None,
65
+ /,
79
66
  *,
80
67
  axis: set[bpy.typing.AxisFlagXyzItems] | None = {"X"},
81
68
  extend: bool | None = False,
82
69
  ):
83
70
  """Select mirrored lattice points
84
71
 
85
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
86
72
  :type execution_context: int | str | None
87
73
  :type undo: bool | None
88
74
  :param axis: Axis
@@ -91,22 +77,17 @@ def select_mirror(
91
77
  :type extend: bool | None
92
78
  """
93
79
 
94
- def select_more(
95
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
96
- execution_context: int | str | None = None,
97
- undo: bool | None = None,
98
- ):
80
+ def select_more(execution_context: int | str | None = None, undo: bool | None = None):
99
81
  """Select vertex directly linked to already selected ones
100
82
 
101
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
102
83
  :type execution_context: int | str | None
103
84
  :type undo: bool | None
104
85
  """
105
86
 
106
87
  def select_random(
107
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
108
88
  execution_context: int | str | None = None,
109
89
  undo: bool | None = None,
90
+ /,
110
91
  *,
111
92
  ratio: float | None = 0.5,
112
93
  seed: int | None = 0,
@@ -114,7 +95,6 @@ def select_random(
114
95
  ):
115
96
  """Randomly select UVW control points
116
97
 
117
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
118
98
  :type execution_context: int | str | None
119
99
  :type undo: bool | None
120
100
  :param ratio: Ratio, Portion of items to select randomly
@@ -132,15 +112,14 @@ def select_random(
132
112
  """
133
113
 
134
114
  def select_ungrouped(
135
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
136
115
  execution_context: int | str | None = None,
137
116
  undo: bool | None = None,
117
+ /,
138
118
  *,
139
119
  extend: bool | None = False,
140
120
  ):
141
121
  """Select vertices without a group
142
122
 
143
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
144
123
  :type execution_context: int | str | None
145
124
  :type undo: bool | None
146
125
  :param extend: Extend, Extend the selection
@@ -1,42 +1,30 @@
1
1
  import typing
2
2
  import collections.abc
3
3
  import typing_extensions
4
- import bpy.types
5
4
 
6
- def add(
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 add(execution_context: int | str | None = None, undo: bool | None = None):
11
6
  """Add a new time marker
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 camera_bind(
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 camera_bind(execution_context: int | str | None = None, undo: bool | None = None):
23
13
  """Bind the selected camera to a marker on the current frame
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 delete(
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
  confirm: bool | None = True,
36
25
  ):
37
26
  """Delete selected time marker(s)
38
27
 
39
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
40
28
  :type execution_context: int | str | None
41
29
  :type undo: bool | None
42
30
  :param confirm: Confirm, Prompt for confirmation
@@ -44,15 +32,14 @@ def delete(
44
32
  """
45
33
 
46
34
  def duplicate(
47
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
48
35
  execution_context: int | str | None = None,
49
36
  undo: bool | None = None,
37
+ /,
50
38
  *,
51
39
  frames: int | None = 0,
52
40
  ):
53
41
  """Duplicate selected time marker(s)
54
42
 
55
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
56
43
  :type execution_context: int | str | None
57
44
  :type undo: bool | None
58
45
  :param frames: Frames
@@ -60,15 +47,14 @@ def duplicate(
60
47
  """
61
48
 
62
49
  def make_links_scene(
63
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
64
50
  execution_context: int | str | None = None,
65
51
  undo: bool | None = None,
52
+ /,
66
53
  *,
67
54
  scene: str | None = "",
68
55
  ):
69
56
  """Copy selected markers to another scene
70
57
 
71
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
72
58
  :type execution_context: int | str | None
73
59
  :type undo: bool | None
74
60
  :param scene: Scene
@@ -76,16 +62,15 @@ def make_links_scene(
76
62
  """
77
63
 
78
64
  def move(
79
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
80
65
  execution_context: int | str | None = None,
81
66
  undo: bool | None = None,
67
+ /,
82
68
  *,
83
69
  frames: int | None = 0,
84
70
  tweak: bool | None = False,
85
71
  ):
86
72
  """Move selected time marker(s)
87
73
 
88
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
89
74
  :type execution_context: int | str | None
90
75
  :type undo: bool | None
91
76
  :param frames: Frames
@@ -95,15 +80,14 @@ def move(
95
80
  """
96
81
 
97
82
  def rename(
98
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
99
83
  execution_context: int | str | None = None,
100
84
  undo: bool | None = None,
85
+ /,
101
86
  *,
102
87
  name: str = "RenamedMarker",
103
88
  ):
104
89
  """Rename first selected time marker
105
90
 
106
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
107
91
  :type execution_context: int | str | None
108
92
  :type undo: bool | None
109
93
  :param name: Name, New name for marker
@@ -111,9 +95,9 @@ def rename(
111
95
  """
112
96
 
113
97
  def select(
114
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
115
98
  execution_context: int | str | None = None,
116
99
  undo: bool | None = None,
100
+ /,
117
101
  *,
118
102
  wait_to_deselect_others: bool | None = False,
119
103
  mouse_x: int | None = 0,
@@ -123,7 +107,6 @@ def select(
123
107
  ):
124
108
  """Select time marker(s)
125
109
 
126
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
127
110
  :type execution_context: int | str | None
128
111
  :type undo: bool | None
129
112
  :param wait_to_deselect_others: Wait to Deselect Others
@@ -139,15 +122,14 @@ def select(
139
122
  """
140
123
 
141
124
  def select_all(
142
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
143
125
  execution_context: int | str | None = None,
144
126
  undo: bool | None = None,
127
+ /,
145
128
  *,
146
129
  action: typing.Literal["TOGGLE", "SELECT", "DESELECT", "INVERT"] | None = "TOGGLE",
147
130
  ):
148
131
  """Change selection of all time markers
149
132
 
150
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
151
133
  :type execution_context: int | str | None
152
134
  :type undo: bool | None
153
135
  :param action: Action, Selection action to execute
@@ -167,9 +149,9 @@ def select_all(
167
149
  """
168
150
 
169
151
  def select_box(
170
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
171
152
  execution_context: int | str | None = None,
172
153
  undo: bool | None = None,
154
+ /,
173
155
  *,
174
156
  xmin: int | None = 0,
175
157
  xmax: int | None = 0,
@@ -181,7 +163,6 @@ def select_box(
181
163
  ):
182
164
  """Select all time markers using box selection
183
165
 
184
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
185
166
  :type execution_context: int | str | None
186
167
  :type undo: bool | None
187
168
  :param xmin: X Min
@@ -210,16 +191,15 @@ def select_box(
210
191
  """
211
192
 
212
193
  def select_leftright(
213
- override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
214
194
  execution_context: int | str | None = None,
215
195
  undo: bool | None = None,
196
+ /,
216
197
  *,
217
198
  mode: typing.Literal["LEFT", "RIGHT"] | None = "LEFT",
218
199
  extend: bool | None = False,
219
200
  ):
220
201
  """Select markers on and left/right of the current frame
221
202
 
222
- :type override_context: bpy.types.Context | dict[str, typing.Any] | None
223
203
  :type execution_context: int | str | None
224
204
  :type undo: bool | None
225
205
  :param mode: Mode