Sketch: Fix Python type hints in addExternal

The syntax of type hints in Python is 'argument name: argument type'.
For more details see: https://docs.python.org/3/library/typing.html
This commit is contained in:
wmayer
2024-12-07 19:28:04 +01:00
parent f1995ef76c
commit f2e57b4eb4

View File

@@ -253,7 +253,7 @@ carbonCopy(objName:str, asConstruction=True)
<UserDocu>
Add a link to an external geometry.
addExternal(objName:str, subName:str, bool:defining, bool:intersection)
addExternal(objName:str, subName:str, defining:bool=False, intersection:bool=False)
Args:
objName: The name of the document object to reference.