Skip to content

Commit

Permalink
Parameter Fitter: Fix send_report
Browse files Browse the repository at this point in the history
  • Loading branch information
VesnaT committed Oct 29, 2024
1 parent 40bc5a2 commit 1037e53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Orange/widgets/evaluate/owparameterfitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ def onDeleteWidget(self):

def send_report(self):
if self._data is None or self._learner is None \
or not self._learner.fitted_parameters():
or not self.fitted_parameters:
return
parameter = self.fitted_parameters[self.parameter_index].label
self.report_items("Settings",
Expand Down

0 comments on commit 1037e53

Please sign in to comment.