unwrap -> expect

This commit is contained in:
Loïc Riegel 2025-03-30 19:10:33 +02:00
parent fe38ac3157
commit a28720e258

View File

@ -714,7 +714,7 @@ fn parse_timezone_from_record(
*span, *span,
)), )),
}, },
None => Ok(FixedOffset::east_opt(0).unwrap()), None => Ok(FixedOffset::east_opt(0).expect("Should never fail")),
} }
} }