mirror of https://github.com/astral-sh/uv
Remove redundant `let Some` (#14880)
This commit is contained in:
parent
cd4cf27d88
commit
e48a9c0992
|
|
@ -3779,9 +3779,7 @@ impl Fork {
|
|||
if self.env.included_by_group(conflicting_item) {
|
||||
return true;
|
||||
}
|
||||
if let Some(conflicting_item) = dep.package.conflicting_item() {
|
||||
self.conflicts.remove(&conflicting_item);
|
||||
}
|
||||
self.conflicts.remove(&conflicting_item);
|
||||
false
|
||||
});
|
||||
Some(self)
|
||||
|
|
|
|||
Loading…
Reference in New Issue