~patchwork-devs/patchwork/patchwork

« back to all changes in this revision

Viewing changes to patchwork/forms.py

  • Committer: Stephen Finucane
  • Date: 2022-10-02 19:59:23 UTC
  • Revision ID: git-v1:bdb0d1f4e2ce436da5f602533b0ae26d2f812313
trivial: Remove unnecessary whitespace

This was added when we ran black over the codebase.

Signed-off-by: Stephen Finucane <stephen@that.guru>

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
        except User.DoesNotExist:
41
41
            return self.cleaned_data['username']
42
42
        raise forms.ValidationError(
43
 
            'This username is already taken. ' 'Please choose another.'
 
43
            'This username is already taken. Please choose another.'
44
44
        )
45
45
 
46
46
    def clean_email(self):