summaryrefslogtreecommitdiff
path: root/alot/addressbook/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/addressbook/__init__.py')
-rw-r--r--alot/addressbook/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alot/addressbook/__init__.py b/alot/addressbook/__init__.py
index f30c7274..17800b33 100644
--- a/alot/addressbook/__init__.py
+++ b/alot/addressbook/__init__.py
@@ -27,7 +27,7 @@ class AddressBook(object):
self.reflags = re.IGNORECASE if ignorecase else 0
@abc.abstractmethod
- def get_contacts(self):
+ def get_contacts(self): # pragma no cover
"""list all contacts tuples in this abook as (name, email) tuples"""
return []