Why this code doesn't work? I see in debugger (PyCharm) that init line is executed but nothing more. I have tried to put there raise exception to be really sure and again nothing happend.
class polo(object):
    def __init__(self):
        super(polo, self).__init__()
        self.po=1     <- this code is newer executed
class EprForm(forms.ModelForm, polo):
    class Meta:
        model = models.Epr