Skip to content

Commit

Permalink
Remove u-prefixes before keys in docstring.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sander Smits committed Dec 5, 2016
1 parent e602203 commit e8519eb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lizard_auth_client/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ def clean(self):
cleaned_data example:
{
'username': u'sander.smits', 'first_name': u'Sander',
'last_name': u'Smits', 'organisation': u'Nelen & Schuurmans',
u'role_run_simulation': True, u'role_manage': False,
u'role_follow_simulation': True, u'role_change_model': True,
'email': u'sander.smits@nelen-schuurmans.nl'
'username': 'sander.smits', 'first_name': 'Sander',
'last_name': 'Smits', 'organisation': 'Nelen & Schuurmans',
'role_run_simulation': True, 'role_manage': False,
'role_follow_simulation': True, 'role_change_model': True,
'email': 'sander.smits@nelen-schuurmans.nl'
}
"""
cleaned_data = super(ManageUserBaseForm, self).clean()
Expand Down

0 comments on commit e8519eb

Please sign in to comment.