Task #102506 - added.err
back to task #102506download
Error: CLIPPY_WARNING:
crates/blockdev/src/blockdev.rs:109:9: warning: this `if` statement can be collapsed
# |
# 109 | / if self.is_mpath()? {
# 110 | | if let Some(partn) = esp_device.partn {
# 111 | | return Ok(partn.to_string());
# 112 | | }
# 113 | | }
# | |_________^
# |
# = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.93.0/index.html#collapsible_if
# = note: `#[warn(clippy::collapsible_if)]` on by default
# help: collapse nested if block
# |
# 109 ~ if self.is_mpath()?
# 110 ~ && let Some(partn) = esp_device.partn {
# 111 | return Ok(partn.to_string());
# 112 ~ }
# |