storage flake8 fixes
This commit is contained in:
parent
da5d085a39
commit
e924e9208f
|
@ -2,15 +2,17 @@ import collections
|
||||||
|
|
||||||
InventoryItem = collections.namedtuple('InventoryItem', 'type stream payload expires tag')
|
InventoryItem = collections.namedtuple('InventoryItem', 'type stream payload expires tag')
|
||||||
|
|
||||||
|
|
||||||
class Storage(object):
|
class Storage(object):
|
||||||
"""Base class for storing inventory (extendable for other items to store)"""
|
"""Base class for storing inventory (extendable for other items to store)"""
|
||||||
pass
|
pass
|
||||||
# def __init__(self):
|
# def __init__(self):
|
||||||
# super(self.__class__, self).__init__()
|
# super(self.__class__, self).__init__()
|
||||||
|
|
||||||
|
|
||||||
class InventoryStorage(Storage, collections.MutableMapping):
|
class InventoryStorage(Storage, collections.MutableMapping):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
# super(self.__class__, self).__init__()
|
# super(self.__class__, self).__init__()
|
||||||
self.numberOfInventoryLookupsPerformed = 0
|
self.numberOfInventoryLookupsPerformed = 0
|
||||||
|
|
||||||
def __contains__(self, hash):
|
def __contains__(self, hash):
|
||||||
|
@ -47,7 +49,8 @@ class InventoryStorage(Storage, collections.MutableMapping):
|
||||||
"""Free memory / perform garbage collection"""
|
"""Free memory / perform garbage collection"""
|
||||||
raise NotImplementedError
|
raise NotImplementedError
|
||||||
|
|
||||||
|
|
||||||
class MailboxStorage(Storage, collections.MutableMapping):
|
class MailboxStorage(Storage, collections.MutableMapping):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
# super(self.__class__, self).__init__()
|
# super(self.__class__, self).__init__()
|
||||||
pass
|
pass
|
||||||
|
|
Loading…
Reference in New Issue
Block a user