Cleanup: remove redundant 'object' parent class

This commit is contained in:
Campbell Barton
2014-10-28 18:42:06 +01:00
parent 2c35bcb356
commit b2b1d8e290
5 changed files with 7 additions and 7 deletions

View File

@@ -57,7 +57,7 @@ class ReturnStore(tuple):
return tuple.__getitem__(self, key)
class FunctionStore(object):
class FunctionStore:
def __call__(self, **kwargs):
return ReturnStore((self.__class__.__name__, kwargs, []))