Skip to content

Commit 73aab74

Browse files
committed
Fix pycodestyle warning
Fix a pycodestyle warning I introduced in 9b064cc: E261 at least two spaces before inline comment
1 parent 31e86d4 commit 73aab74

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pgweb/account/forms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ class Meta:
173173
class ContributorForm(forms.ModelForm):
174174
class Meta:
175175
model = Contributor
176-
exclude = ('ctype', 'user', ) # these fields are not user-editable
176+
exclude = ('ctype', 'user', ) # these fields are not user-editable
177177

178178

179179
class AddEmailForm(forms.Form):

0 commit comments

Comments
 (0)