Better fix for serializing/deserializing cache plugins (v2)

This commit is contained in:
James Cammarata 2015-05-07 23:56:33 -05:00
parent cd6d1f9221
commit 0f1eb3cfc2
4 changed files with 17 additions and 9 deletions

View file

@ -26,9 +26,6 @@ from six import add_metaclass
@add_metaclass(ABCMeta)
class BaseCacheModule:
def __init__(self):
self.__getstate__ = self.copy
@abstractmethod
def get(self, key):
pass