Skip to content

Commit

Permalink
reformat with black
Browse files Browse the repository at this point in the history
  • Loading branch information
jasminefiner committed Dec 18, 2018
1 parent 4dd5d79 commit 9bed054
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions rp-portfolio/blog/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@
class CommentForm(forms.Form):
author = forms.CharField(
max_length=60,
widget=forms.TextInput(attrs={
"class": "form-control",
"placeholder": "Your Name"
})
widget=forms.TextInput(
attrs={"class": "form-control", "placeholder": "Your Name"}
),
)
body = forms.CharField(widget=forms.Textarea(
attrs={
"class": "form-control",
"placeholder": "Leave a comment!"
})
body = forms.CharField(
widget=forms.Textarea(
attrs={"class": "form-control", "placeholder": "Leave a comment!"}
)
)

0 comments on commit 9bed054

Please sign in to comment.