Skip to content

Commit 3b508aa

Browse files
committed
remove unnecessary comma
1 parent 6e735b7 commit 3b508aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en/django_forms/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class PostForm(forms.ModelForm):
2727

2828
class Meta:
2929
model = Post
30-
fields = ('title', 'text',)
30+
fields = ('title', 'text')
3131
```
3232

3333
We need to import Django forms first (`from django import forms`) and our `Post` model (`from .models import Post`).

0 commit comments

Comments
 (0)