Skip to content

Commit

Permalink
Making lint happier
Browse files Browse the repository at this point in the history
  • Loading branch information
PrimozGodec committed Sep 21, 2023
1 parent 297ec2c commit 7ad0e49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Orange/widgets/model/owgradientboosting.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def _add_main_layout(self):
self._set_lambda_label()

def _set_lambda_label(self):
self.lambda_label.setText("Lambda: {}".format(self.lambda_))
self.lambda_label.setText(f"Lambda: {self.lambda_}")

def get_arguments(self) -> Dict:
params = super().get_arguments()
Expand Down

0 comments on commit 7ad0e49

Please sign in to comment.