I am trying to learn PyQt
on my own from rapid gui programming with python and qt
and having trouble understanding the meaning/requirement
of below line of code mentioned in one of the example in the book.
class Form(QDialog):
def __init__(self,parent=None):
super(Form,self).__init__(parent) # Trouble understanding here
So, my question is what is the need of super(Form,self).__init__(parent)
or what purpose it is trying to full fill in this code.