Made cosmetic edits to code snippets reformatted with blacken-docs.

This commit is contained in:
Mariusz Felisiak 2024-05-30 14:42:05 +02:00 committed by GitHub
parent ff308a0604
commit 0f694ce2eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -370,7 +370,7 @@ example::
# Only do something if both fields are valid so far.
if "help" not in subject:
raise ValidationError(
"Did not send for 'help' in the subject despite " "CC'ing yourself."
"Did not send for 'help' in the subject despite CC'ing yourself."
)
In this code, if the validation error is raised, the form will display an

View File

@ -380,7 +380,7 @@ Then, ``full_clean()`` will check unique constraints on your model.
raise ValidationError(
{
"status": _(
"Set status to draft if there is not a " "publication date."
"Set status to draft if there is not a publication date."
),
}
)