Hi,
I've created new signal , where i specify list and object datatype.
dataChanged = QtCore.Signal(list, object)
But list and object datatype don't convey properly that what will be in list and in the object.
So it would be good if we could declare something like this,
dataChanged = QtCore.Signal(lst_employees, obj_sender)
so that, if anyone sees the code, would understand easily. But i don't know it's possible in Python or not.
But i have done something like this, i don't know this is correct or not
lst_employees = list
obj_sender = object
dataChanged = QtCore.Signal(lst_employees, obj_sender)
Is this right and pythanic way to use ? Please guide me.
Thanks
Ravi