From 134d791f94dec9bf06b98a9881495a435c191bd3 Mon Sep 17 00:00:00 2001 From: Patrick Totzke Date: Thu, 31 Aug 2017 15:19:15 +0100 Subject: pep8 fixes This mostly shortens lines down to <=79 chars and fixes some other small things I found using the pep8 tool. --- alot/addressbook/abook.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'alot/addressbook') diff --git a/alot/addressbook/abook.py b/alot/addressbook/abook.py index b620fbac..41b5103e 100644 --- a/alot/addressbook/abook.py +++ b/alot/addressbook/abook.py @@ -16,7 +16,8 @@ class AbookAddressBook(AddressBook): :type path: str """ AddressBook.__init__(self, **kwargs) - DEFAULTSPATH = os.path.join(os.path.dirname(__file__), '..', 'defaults') + DEFAULTSPATH = os.path.join(os.path.dirname(__file__), '..', + 'defaults') self._spec = os.path.join(DEFAULTSPATH, 'abook_contacts.spec') path = os.path.expanduser(path) self._config = read_config(path, self._spec) -- cgit v1.2.3