diff --git a/src/storage/storage.py b/src/storage/storage.py index c000132c..9b33eef7 100644 --- a/src/storage/storage.py +++ b/src/storage/storage.py @@ -2,15 +2,13 @@ Storing inventory items """ -from abc import ABCMeta, abstractmethod +from abc import abstractmethod from collections import namedtuple try: from collections import MutableMapping # pylint: disable=deprecated-class except ImportError: from collections.abc import MutableMapping -import six - InventoryItem = namedtuple('InventoryItem', 'type stream payload expires tag') @@ -47,9 +45,3 @@ class InventoryStorage(MutableMapping): def clean(self): """Free memory / perform garbage collection""" pass - - -@six.add_metaclass(ABCMeta) -class MailboxStorage(MutableMapping): - """An abstract class for storing mails. TODO""" - pass