I have a python script that should connect to a dbus interface and receive some messages through signals.
The signature of one of the items that it receives is: aa{qv} and even though it should receive a list of two different arrays of dictionaries it only shows me in the argument the last one in the list with the signature a{qv}. The dbus-monitor displays both items in the array.
Is there a way to make python recognize this type? Or rewrite the way it converts the dbus message?
