Merge "Use for loop instead of map to modify iterables"
This commit is contained in:
commit
a8c55fc0fc
@ -86,7 +86,8 @@ class IndexView(horizon_tables.DataTableView):
|
||||
msg = _('Unable to retrieve database clusters.')
|
||||
exceptions.handle(self.request, msg)
|
||||
|
||||
map(self._extra_data, clusters)
|
||||
for cluster in clusters:
|
||||
self._extra_data(cluster)
|
||||
|
||||
return clusters
|
||||
|
||||
|
@ -113,8 +113,8 @@ class DatabaseTab(tabs.TableTab):
|
||||
instance = self.tab_group.kwargs['instance']
|
||||
try:
|
||||
data = api.trove.database_list(self.request, instance.id)
|
||||
add_instance = lambda d: setattr(d, 'instance', instance)
|
||||
map(add_instance, data)
|
||||
for database in data:
|
||||
setattr(database, 'instance', instance)
|
||||
except Exception:
|
||||
msg = _('Unable to get databases data.')
|
||||
exceptions.handle(self.request, msg)
|
||||
|
@ -80,7 +80,8 @@ class IndexView(horizon_tables.DataTableView):
|
||||
instances = []
|
||||
msg = _('Unable to retrieve database instances.')
|
||||
exceptions.handle(self.request, msg)
|
||||
map(self._extra_data, instances)
|
||||
for instance in instances:
|
||||
self._extra_data(instance)
|
||||
return instances
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user