Panel Execute DATs (and other ops?) have a parameter called ‘from’. Unfortunately ‘from’ is a keyword in python so ‘me.par.from’ causes a syntax error.
The workaround is to use ‘getattr(me.par, “from”)’
Panel Execute DATs (and other ops?) have a parameter called ‘from’. Unfortunately ‘from’ is a keyword in python so ‘me.par.from’ causes a syntax error.
The workaround is to use ‘getattr(me.par, “from”)’
Good find. There are 3 nodes that have this issue it seems. Fixed the Panel Execute, and thinking for better names for the other ones.