mirror of
https://git.launchpad.net/~ubuntu-release/britney/+git/britney2-ubuntu
synced 2025-04-05 15:21:27 +00:00
solver: Move a common variable out of an if
Signed-off-by: Niels Thykier <niels@thykier.net>
This commit is contained in:
parent
1e46965924
commit
c4931fb1b2
@ -252,15 +252,14 @@ class InstallabilitySolver(InstallabilityTester):
|
||||
other_adds = set()
|
||||
other_rms = set()
|
||||
for d in ifilter_only(ptable, depgroup):
|
||||
other = ptable[d]
|
||||
if d in going_in:
|
||||
# "other" provides something "key" needs,
|
||||
# schedule accordingly.
|
||||
other = ptable[d]
|
||||
other_adds.add(other)
|
||||
else:
|
||||
# "other" removes something "key" needs,
|
||||
# schedule accordingly.
|
||||
other = ptable[d]
|
||||
other_rms.add(other)
|
||||
|
||||
for other in (other_adds - other_rms):
|
||||
|
Loading…
x
Reference in New Issue
Block a user