Wymagane warunkowo pole formularza Django

Chciałbym mieć pole wymagane warunkowo na podstawie ustawienia wartości logicznej na True lub False.

Co powinienem zwrócić do set required = True jeśli is_company jest ustawione na True?

class SignupFormExtra(SignupForm):
    is_company = fields.BooleanField(label=(u"Is company?"), 
                                     required=False)
    NIP = forms.PLNIPField(label=(u'NIP'), required=False)


def clean(self):
    if self.cleaned_data.get('is_company', True):
        return ...?
    else:
        pass

questionAnswers(1)

yourAnswerToTheQuestion