<div class="gmail_quote"><div>Hello, </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div><div class="h5">
<br>
</div></div>So I have this now:<br>
<br>
class A(QTreeWidgetItem):<br>
    def __init__(self, parent):<br>
        QTreeWidgetItem.__init__(parent)<br></blockquote><div><br></div><div>Try this:</div><div> class A(QTreeWidgetItem):</div>   def __init__(self, parent=None):<br>       QTreeWidgetItem.__init__(self, parent)    # the first argument is always SELF.  The second argument is the superclass&#39; first argument from the C++ api.</div>
<div class="gmail_quote"><br></div><div class="gmail_quote">See other PyQt examples for further illustration.</div><div class="gmail_quote"><br></div><div class="gmail_quote">Darryl</div>