N
Nikola Skoric
I have a superclass Element and a subclass Family. All Family.__init__() does is run Element.__init__() and self.__parse(). For some reason it seems like self.__parse() isn't run. Here is the code:
http://github.com/dijxtra/simplepyg...cce6b97c0b5e75b8be/simplepyged/simplepyged.py
In this version everything works fine. Notice lines 698, 703 and 708. If I remove those lines, those 3 methods return None or []. Seems like __init__ won't run __parse, but other methods run it without problem.
So, what obvious thing am I missing?
http://github.com/dijxtra/simplepyg...cce6b97c0b5e75b8be/simplepyged/simplepyged.py
In this version everything works fine. Notice lines 698, 703 and 708. If I remove those lines, those 3 methods return None or []. Seems like __init__ won't run __parse, but other methods run it without problem.
So, what obvious thing am I missing?