Skip to content

Commit bd0407d

Browse files
[API-519] Corrected some method signature to match the C++ ones
1 parent abbc438 commit bd0407d

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/connector_axis_controller/__init__.pyi

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,7 @@ def get_standard_connector_list() -> List[str]:
331331
"""
332332

333333

334-
def get_counterbore_diameter_for_start_side(axis_id: ElementId, section_index: UnsignedInt, diameter: float, depth: float,
335-
is_conical: bool) -> float:
334+
def get_counterbore_diameter_for_start_side(axis_id: ElementId, section_index: UnsignedInt) -> float:
336335
"""Gets the counterbore diameter for the start side.
337336
338337
Parameters:

src/scene_controller/__init__.pyi

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,7 @@ def is_scene_present(name: str) -> bool:
112112
True if the scene is present, false otherwise.
113113
"""
114114

115-
def set_group_tab_color(scene_group_name: str, red: int, green: int, blue: int) -> None:
116-
# TODO : Missing alpha parameter
115+
def set_group_tab_color(scene_group_name: str, red: int, green: int, blue: int, alpha: int) -> None:
117116
"""Sets the group tab color.
118117
119118
Parameters:

0 commit comments

Comments
 (0)