def forests(self, connection=None): """ Get a list of the forests in the local cluster. """ if connection is None: connection = self.connection return Forest.list(connection)
def list(self, args, config, connection): forests = Forest.list(connection) print(json.dumps(forests, sort_keys=True, indent=2))
def list(self, args, config, connection): print(Forest.list(connection))
def forests(self, connection=None): if connection is None: connection = self.connection return Forest.list(connection)