[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2026-01-13 07:30:29 +00:00
parent 2a7dd49328
commit 79a55ff186

View file

@ -766,9 +766,7 @@ class IFEvalEnv(BaseEnv):
# Print reasoning source breakdown if thinking mode is enabled
if self.config.thinking_mode and reasoning_sources:
print("\nReasoning Source Breakdown:")
for source, count in sorted(
reasoning_sources.items(), key=lambda x: -x[1]
):
for source, count in sorted(reasoning_sources.items(), key=lambda x: -x[1]):
pct = (count / total_count) * 100 if total_count > 0 else 0
print(f" {source}: {count} ({pct:.1f}%)")