From e5cd5bd79658b2acfe3717729ec29a355f4d7f29 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Sun, 4 Oct 2020 21:00:13 -0700 Subject: [PATCH] users: cosmetic: Yapf refactoring Signed-off-by: Sunil Mohan Adapa --- plinth/modules/users/forms.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plinth/modules/users/forms.py b/plinth/modules/users/forms.py index 7f6d51065..760c9abd1 100644 --- a/plinth/modules/users/forms.py +++ b/plinth/modules/users/forms.py @@ -66,8 +66,8 @@ class UsernameValidator(validators.RegexValidator): USERNAME_FIELD = forms.CharField( - label=ugettext_lazy('Username'), - max_length=150, validators=[UsernameValidator()], + label=ugettext_lazy('Username'), max_length=150, + validators=[UsernameValidator()], help_text=ugettext_lazy('Required. 150 characters or fewer. English ' 'letters, digits and @/./-/_ only.'))