Skip to content
Snippets Groups Projects
Commit 266ce091 authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

Merge branch 'main' into dev

parents ffe438d8 156791a2
No related branches found
No related tags found
1 merge request!143Release 0.15.0
Pipeline #49873 passed with warnings
......@@ -18,7 +18,7 @@ Or to speak it out directly in Python:
r.get_property("alpha").value = 25 # setting properties (old api)
print(r.get_property("alpha").value + 25) # getting properties (old api)
from linkahead.high_level_api import convert_to_python_entity
from linkahead.high_level_api import convert_to_python_object
obj = convert_to_python_object(r) # create a high level entity
obj.r = 25 # setting properties (new api)
print(obj.r + 25) # getting properties (new api)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment