I have the following base class and subclass:
class Event(object): def __init__(self, sr1=None, foobar=None): self.sr1 = sr1 self.foobar
You need to call the __init__ method of the base class from the __init__ method of the inherited class.
__init__
See here for how to do this.