def save()

in src/wagtail_localize_smartling/forms.py [0:0]


    def save(self, commit=True):
        obj = super().save(commit=False)
        obj.user = self.user
        if commit:
            obj.save()
            self.save_m2m()
        return obj