You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: replace .unwrap() with .expect() on infallible calls
The four .unwrap() calls all sit on values that cannot fail in
practice (regex literals known at compile time, and a serde_json
value built from a json! literal). Switch to .expect() so the panic
message documents the invariant if it ever does fire.
0 commit comments