qlik-oss / server-side-extension

A Qlik server-side extension protocol for extending the Qlik built-in expression library with functionality from external calculation engines.
MIT License
155 stars 126 forks source link

Fix python syntax in SSE load statement in QlikView example #39

Closed josefinestal closed 6 years ago

josefinestal commented 6 years ago

There was a syntax error in the python script when loading the Numeric field in the SSELoad table.

The original script was "args[0] + 1" but since args[0] is a list we are not allowed to add an integer. As a solution, I converted the list to a numpy array which allows addition with integers.