Remove trailing whitespace

This commit is contained in:
Lois Verheij 2025-02-27 12:01:57 +01:00
parent ecb107dd56
commit c143d45051

View file

@ -56,8 +56,11 @@ class ConfigurationForm(LoginRequiredMixin, UpdateView):
obj = self.get_object() # Get instance
# Save related forms
MastodonConfigForm(self.request.POST, instance=obj.mastodonconfig).save()
PixelfedConfigForm(self.request.POST, instance=obj.pixelfedconfig).save()
PeertubeConfigForm(self.request.POST, instance=obj.peertubeconfig).save()
MastodonConfigForm(self.request.POST,
instance=obj.mastodonconfig).save()
PixelfedConfigForm(self.request.POST,
instance=obj.pixelfedconfig).save()
PeertubeConfigForm(self.request.POST,
instance=obj.peertubeconfig).save()
return response