From 666aab1a3fcd5f33659f67540d23b96fa8fa2f98 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Wed, 10 Feb 2021 14:10:42 +0100 Subject: Cosmetics, clean up imports --- alot/addressbook/__init__.py | 4 ++-- alot/addressbook/abook.py | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) (limited to 'alot/addressbook') diff --git a/alot/addressbook/__init__.py b/alot/addressbook/__init__.py index 4e733efd..834142d6 100644 --- a/alot/addressbook/__init__.py +++ b/alot/addressbook/__init__.py @@ -1,9 +1,9 @@ # Copyright (C) 2011-2015 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file -import re -import abc +import abc +import re class AddressbookError(Exception): pass diff --git a/alot/addressbook/abook.py b/alot/addressbook/abook.py index 705a646d..02bd62af 100644 --- a/alot/addressbook/abook.py +++ b/alot/addressbook/abook.py @@ -1,9 +1,11 @@ # Copyright (C) 2011-2015 Patrick Totzke # This file is released under the GNU GPL, version 3 or a later revision. # For further details see the COPYING file + import os -from . import AddressBook -from ..settings.utils import read_config + +from . import AddressBook +from ..settings.utils import read_config class AbookAddressBook(AddressBook): -- cgit v1.2.3