Task #95077 - added.err

back to task #95077
download
Error: CLIPPY_WARNING:
crates/lib/src/store/mod.rs:390:34: warning: called `unwrap` on `booted_root` after checking its variant with `is_none`
#      |
#  380 |         let sepolicy = if booted_root.is_none() {
#      |                        ------------------------ help: try: `if let Some(<item>) = &booted_root`
#  ...
#  390 |             lsm::new_sepolicy_at(booted_root.as_ref().unwrap())?
#      |                                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#      |
#      = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#unnecessary_unwrap
#      = note: `#[warn(clippy::unnecessary_unwrap)]` on by default