Skip to content

Commit

Permalink
fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
hvlads committed Oct 12, 2024
1 parent 5373f6b commit 41c8a65
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion example/blog/articles/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ class Meta:
fields = ("author", "text")
widgets = {
"text": CKEditor5Widget(
attrs={"class": "django_ckeditor_5", "name": "message", "required": True},
attrs={
"class": "django_ckeditor_5",
"name": "message",
"required": True,
},
config_name="comment",
),
}
Expand Down

0 comments on commit 41c8a65

Please sign in to comment.