Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello -
We are wanting to test full script support to enable our data science team to do some cool stuff! 🙂
I have worked through all the pieces and been reading all the documentation available - thank you all who contribute!!
I decided on using the following as a starting point for our work.
https://github.com/qlik-oss/server-side-extension/tree/master/examples/python/fullscriptsupport
However in testing the example - I receive during load the following error.
'The following error occurred:
A little research and coffee made me understand that self was being passed as the additional argument to the function.
That made me go hmmmm and look at the function definition again compared to the example. I forgot to tag it static.
So the correct definition was
@staticmethod
def get_arguments(context, arg_types, duals, header):
Now we are able to start testing!
Thanks.
A little research and coffee made me understand that self was being passed as the additional argument to the function.
That made me go hmmmm and look at the function definition again compared to the example. I forgot to tag it static.
So the correct definition was
@staticmethod
def get_arguments(context, arg_types, duals, header):
Now we are able to start testing!
Thanks.