fix: code reformatted

This commit is contained in:
2025-05-05 18:59:00 +02:00
parent afa44011d0
commit 07ea49a035
13 changed files with 139 additions and 93 deletions

View File

@@ -7,5 +7,7 @@ class CommentForm(forms.ModelForm):
model = Comment
fields = ["text"]
widgets = {
"text": forms.Textarea(attrs={"rows": 3, "placeholder": "Kommentar schreiben..."}),
"text": forms.Textarea(
attrs={"rows": 3, "placeholder": "Kommentar schreiben..."}
),
}