mirror of
https://github.com/astral-sh/uv.git
synced 2025-11-03 21:23:54 +00:00
Remove redundant let Some (#14880)
This commit is contained in:
parent
cd4cf27d88
commit
e48a9c0992
1 changed files with 1 additions and 3 deletions
|
|
@ -3779,9 +3779,7 @@ impl Fork {
|
||||||
if self.env.included_by_group(conflicting_item) {
|
if self.env.included_by_group(conflicting_item) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
if let Some(conflicting_item) = dep.package.conflicting_item() {
|
self.conflicts.remove(&conflicting_item);
|
||||||
self.conflicts.remove(&conflicting_item);
|
|
||||||
}
|
|
||||||
false
|
false
|
||||||
});
|
});
|
||||||
Some(self)
|
Some(self)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue