File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments