Execute a script of an sdk module

Hi, I am trying to run a script from the script console panel of ignition designer, which calls a method made in a sdk module from a class created in project library, but it does not run complete and I get this message, what would I need to do?
<bound method report.data of <yieldInit.report instance at 0x10>>>

Looks like you are missing the parenthesis after the function name that causes jython to run the function and deliver the return value. Otherwise jython simply returns the function itself. (Functions and methods are first-class objects in python. They can be passed around.)

1 Like