chore: Remove redundant conversion

This commit is contained in:
Shun Sakai 2026-01-21 00:51:19 +09:00
parent fffc4fcf96
commit 603955f542

View file

@ -818,7 +818,7 @@ impl From<u8> for ExitCode {
impl From<u32> for ExitCode {
fn from(code: u32) -> Self {
ExitCode(u32::from(code))
ExitCode(code)
}
}