Files
foxhunt/ml/tests
jgrusewski 7fe064c6e0 fix: resolve all 179 clippy deny violations in ml crate
Replace .unwrap()/.expect() with safe alternatives across 51 files:
- 41 `let _ = writeln!()` → `_ = writeln!()` (wildcard assignment)
- 53 unwrap() in features/ → unwrap_or/match/early-return
- 20 expect() in inference/metrics → module-level #[allow] for static init
- 16 unwrap/expect in hyperopt/ → ?, map_err, unwrap_or
- 20 unwrap in dqn/trainers/ → ?, map_err, unwrap_or
- 28 unwrap in misc files → context-appropriate safe patterns

Zero clippy errors remain across the entire workspace.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-24 17:19:35 +01:00
..