representations have key representations instead of components

This commit is contained in:
Jakub Trllo 2019-04-26 17:58:14 +02:00
parent cdb24724c1
commit c47517a1f0

View file

@ -367,7 +367,7 @@ class DropDataFrame(QtWidgets.QFrame):
self.parent_widget.working_stop()
def collect_data(self):
data = {'components' : []}
data = {'representations' : []}
for item in self.items:
data['components'].append(item.collect_data())
data['representations'].append(item.collect_data())
return data