Skip to content

Commit

Permalink
pep8: Add compliance with rule E261 to zerver/views/user_settings.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
adnrs96 committed May 17, 2017
1 parent cc2b334 commit 092d670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zerver/views/user_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def update_display_settings_backend(request, user_profile,
emojiset not in UserProfile.emojiset_choices()):
raise JsonableError(_("Invalid emojiset '%s'" % (emojiset,)))

result = {} # type: Dict[str, Any]
result = {} # type: Dict[str, Any]
if (default_language is not None and
user_profile.default_language != default_language):
do_set_user_display_setting(user_profile, "default_language", default_language)
Expand Down

0 comments on commit 092d670

Please sign in to comment.