diff --git a/distarray/client.py b/distarray/client.py index c3dd5fa2..0d256916 100644 --- a/distarray/client.py +++ b/distarray/client.py @@ -125,12 +125,6 @@ def from_localarrays(cls, key, context): def __del__(self): self.context.delete_key(self.key) - def _get_attribute(self, name): - key = self.context._generate_key() - self.context._execute0('%s = %s.%s' % (key, self.key, name)) - result = self.context._pull0(key) - return result - def __repr__(self): s = '' % \ (self.shape, self.context.targets)