Skip to content

Commit 9bed054

Browse files
committed
reformat with black
1 parent 4dd5d79 commit 9bed054

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

rp-portfolio/blog/forms.py

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,12 @@
44
class CommentForm(forms.Form):
55
author = forms.CharField(
66
max_length=60,
7-
widget=forms.TextInput(attrs={
8-
"class": "form-control",
9-
"placeholder": "Your Name"
10-
})
7+
widget=forms.TextInput(
8+
attrs={"class": "form-control", "placeholder": "Your Name"}
9+
),
1110
)
12-
body = forms.CharField(widget=forms.Textarea(
13-
attrs={
14-
"class": "form-control",
15-
"placeholder": "Leave a comment!"
16-
})
11+
body = forms.CharField(
12+
widget=forms.Textarea(
13+
attrs={"class": "form-control", "placeholder": "Leave a comment!"}
14+
)
1715
)

0 commit comments

Comments
 (0)