forked from Proxmox/proxmox
clippy fix: binary comparison to literal Option::None
Signed-off-by: Lukas Wagner <l.wagner@proxmox.com>
This commit is contained in:
parent
8f7566209c
commit
b6abb52a78
@ -54,7 +54,7 @@ impl Iterator for SplitQuoteWord {
|
||||
continue;
|
||||
}
|
||||
|
||||
if start == None {
|
||||
if start.is_none() {
|
||||
start = Some(n);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user