Skip to content

Commit 3636285

Browse files
committed
Continuize: Use automated summaries
1 parent 7cb08b1 commit 3636285

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

Orange/widgets/data/owcontinuize.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,6 @@ def __init__(self):
9898
gui.auto_apply(self.buttonsArea, self, "autosend")
9999

100100
self.data = None
101-
self.info.set_input_summary(self.info.NoInput)
102-
self.info.set_output_summary(self.info.NoOutput)
103101

104102
def settings_changed(self):
105103
self.commit()
@@ -110,12 +108,8 @@ def setData(self, data):
110108
self.data = data
111109
self.enable_normalization()
112110
if data is None:
113-
self.info.set_input_summary(self.info.NoInput)
114-
self.info.set_output_summary(self.info.NoOutput)
115111
self.Outputs.data.send(None)
116112
else:
117-
self.info.set_input_summary(len(data),
118-
format_summary_details(data))
119113
self.unconditional_commit()
120114

121115
def enable_normalization(self):
@@ -146,8 +140,6 @@ def commit(self):
146140
domain = continuizer(self.data)
147141
data = self.data.transform(domain)
148142
self.Outputs.data.send(data)
149-
self.info.set_output_summary(len(data),
150-
format_summary_details(data))
151143
else:
152144
self.Outputs.data.send(self.data) # None or empty data
153145

0 commit comments

Comments
 (0)