summaryrefslogtreecommitdiff
path: root/alot/db/message.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2017-08-31 15:19:15 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2017-09-01 15:33:15 +0100
commit134d791f94dec9bf06b98a9881495a435c191bd3 (patch)
tree598cb50b34a1e8346c114dbf50c0a013cb3d5f48 /alot/db/message.py
parent0df1c905aee10308069d9db9e396714feabc4ce4 (diff)
pep8 fixes
This mostly shortens lines down to <=79 chars and fixes some other small things I found using the pep8 tool.
Diffstat (limited to 'alot/db/message.py')
-rw-r--r--alot/db/message.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/alot/db/message.py b/alot/db/message.py
index d07bd283..9d7437eb 100644
--- a/alot/db/message.py
+++ b/alot/db/message.py
@@ -116,8 +116,7 @@ class Message(object):
def get_tags(self):
"""returns tags attached to this message as list of strings"""
- l = sorted(self._tags)
- return l
+ return sorted(self._tags)
def get_thread(self):
"""returns the :class:`~alot.db.Thread` this msg belongs to"""