Hello all, I have a Class1 that there has a list, and a function that returns this list, In another class I got an instance of this first class, and when I make:<br><br>obj1 = Class1()<br>list = obj1.getList()<br><br>I got this exception:<br>
<br>traceback (most recent call last):<br>  File "xxx", line 184, in onAddErro<br>    list = self.errorMgr.getList()<br>TypeError: 'list' object is not callable<br><br>How can I solve it?<br>