Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Mar 7, 2026
commit 221002f9a37e24c726e9e8fda0c49fafb34c299a
4 changes: 1 addition & 3 deletions openml/evaluations/evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,6 @@ def __repr__(self) -> str:
longest_field_name_length = max(len(name) for name, _ in _fields)
field_line_format = f"{{:.<{longest_field_name_length}}}: {{}}"

body = "\n".join(
field_line_format.format(name, value) for name, value in _fields
)
body = "\n".join(field_line_format.format(name, value) for name, value in _fields)

return header + body