Skip to content

Commit

Permalink
Implementation of dropbox#142: Fixed flake8 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Narayanan Seshan committed Sep 1, 2017
1 parent 53d86a8 commit 3834502
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pynsot/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def pretty_dict(data, delim='=', sep=', ', joiner='\n'):
val = joiner + val # Prefix it w/ newline for readability
pretty += '%s%s%s%s' % (key, delim, val, sep)

pretty = pretty.rstrip(sep) # Drop the trailing separator
pretty = pretty.rstrip(sep) # Drop the trailing separator
pretty = pretty.split('\n')
pretty.sort()
pretty = '\n'.join(pretty)
Expand Down

0 comments on commit 3834502

Please sign in to comment.