From 0e49418d37635ff41fe8041815ff352a54bc2e9a Mon Sep 17 00:00:00 2001 From: Sylvain Date: Tue, 5 May 2026 08:07:59 +0200 Subject: [PATCH] Update cmd parameter documentation in add_to_undo_stack according to : https://github.com/cwapi3d/cwapi3dpython/discussions/215#discussioncomment-10841417 --- src/element_controller/__init__.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/element_controller/__init__.pyi b/src/element_controller/__init__.pyi index cff2109..a644fc7 100644 --- a/src/element_controller/__init__.pyi +++ b/src/element_controller/__init__.pyi @@ -488,7 +488,7 @@ def add_elements_to_undo(element_id_list: list[ElementId], cmd: int) -> None: Parameters: element_id_list: The elements to add. - cmd: The command associated with the undo. + cmd: The command associated with the undo. Possible values: 1 = Add, 2 = Modify. """ def make_undo() -> None: