pep8: Add compliance with rule E261 to bots/define/define.py.

This commit is contained in:
Aditya Bansal 2017-05-07 20:16:31 +05:30 committed by Tim Abbott
parent c7a0f26846
commit acfb7c902a
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ class DefineHandler(object):
# Could not fetch definitions for the given word.
if not definitions:
response += self.REQUEST_ERROR_MESSAGE
else: # Definitions available.
else: # Definitions available.
# Show definitions line by line.
for d in definitions:
example = d['example'] if d['example'] else '*No example available.*'