In my Python script I call this function a few times
write2db(int(pocnr), larm1, tid, label1, q1, x, y, lat, long, radio)
I want to be able to have the set of variables in one variable.
Should look like this
write2db(myargs)
So when I make a change to list of args I don't have to do it in more than one place. I have tried a few things but so far no luck. Any suggestions?