From a8c7968c92b45f008d473b4443c5ff1bc731204f Mon Sep 17 00:00:00 2001 From: Frank Martinez Date: Sat, 29 Nov 2025 22:08:13 -0500 Subject: [PATCH] CAM: Fix pyi signature to match c++ --- src/Mod/CAM/App/Command.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/CAM/App/Command.pyi b/src/Mod/CAM/App/Command.pyi index d0eac740c4..ac6d9747f3 100644 --- a/src/Mod/CAM/App/Command.pyi +++ b/src/Mod/CAM/App/Command.pyi @@ -32,7 +32,7 @@ class Command(Persistence): """returns a copy of this command transformed by the given placement""" ... - def addAnnotations(self, annotations) -> "Command": + def addAnnotations(self, annotations, /) -> "Command": """addAnnotations(annotations): adds annotations from dictionary or string and returns self for chaining""" ... Name: str