more comprehensive

This commit is contained in:
2021-06-21 16:28:14 +02:00
parent 96b8e8d899
commit efd8a4d835

View File

@ -94,12 +94,7 @@ class Director:
def collect_grid(self):
res = []
for row in self.plot_container:
line = []
for col in row:
line.append(col.plt.name)
res.append(line)
res = [[col.plt.name for col in row] for row in self.plot_container]
log.debug(normalized_string(res))
return res