Skip to content

Commit

Permalink
fix(EstimatorReport): Make string an f-string (#1083)
Browse files Browse the repository at this point in the history
  • Loading branch information
augustebaum authored and rouk1 committed Jan 14, 2025
1 parent 4d0d767 commit 4fb8a36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skore/src/skore/sklearn/_estimator/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def estimator(self):
def estimator(self, value):
raise AttributeError(
"The estimator attribute is immutable. "
"Call the constructor of {self.__class__.__name__} to create a new report."
f"Call the constructor of {self.__class__.__name__} to create a new report."
)

@property
Expand Down

0 comments on commit 4fb8a36

Please sign in to comment.