I now set up a Pydbus server and exported some methods, but one method keeps me guessing. The amount of arguments used in this method is changing. In Python this is simply done with MyMethod(*arg, **kwarg). If I write this function into my XML interface I have to define the exact amount of arguments.
Is there any way to not specify the exact amount of arguments? So that I could in theory use one argument on the first usage and unlimited arguments the second time?
Thanks for your help, Dominik