Remove unused variable
Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
parent
c55ed742cd
commit
f6162b90dd
@ -17,7 +17,6 @@ import gzip
|
||||
import os
|
||||
from collections import defaultdict
|
||||
from fnmatch import fnmatch
|
||||
from itertools import chain
|
||||
|
||||
import createrepo_c as cr
|
||||
import kobo.rpmlib
|
||||
@ -148,8 +147,6 @@ class GatherMethodHybrid(pungi.phases.gather.method.GatherMethodBase):
|
||||
for var in self.compose.all_variants.values():
|
||||
for mmd in var.arch_mmds.get(self.arch, {}).values():
|
||||
self.modular_packages.update(mmd.get_rpm_artifacts().dup())
|
||||
for mmd in var.dev_mmds.get(self.arch, {}).values():
|
||||
self.modular_packages.update(mmd.get_rpm_artifacts().dup())
|
||||
|
||||
def prepare_langpacks(self, arch, variant):
|
||||
if not self.compose.has_comps:
|
||||
@ -456,9 +453,7 @@ def create_module_repo(compose, variant, arch):
|
||||
# We need to include metadata for all variants. The packages are in the
|
||||
# set, so we need their metadata.
|
||||
for var in compose.all_variants.values():
|
||||
for mmd in chain(
|
||||
var.arch_mmds.get(arch, {}).values(), var.dev_mmds.get(arch, {}).values()
|
||||
):
|
||||
for mmd in var.arch_mmds.get(arch, {}).values():
|
||||
# Set the arch field, but no other changes are needed.
|
||||
repo_mmd = mmd.copy()
|
||||
repo_mmd.set_arch(tree_arch_to_yum_arch(arch))
|
||||
|
@ -266,7 +266,6 @@ class Variant(object):
|
||||
self.pkgset = None
|
||||
self.mmds = []
|
||||
self.arch_mmds = {}
|
||||
self.dev_mmds = {}
|
||||
self.module_uid_to_koji_tag = {}
|
||||
self.nsvc_to_pkgset = {}
|
||||
|
||||
|
@ -62,7 +62,6 @@ class MockVariant(mock.Mock):
|
||||
self.parent = kwargs.get('parent', None)
|
||||
self.mmds = []
|
||||
self.arch_mmds = {}
|
||||
self.dev_mmds = {}
|
||||
self.module_uid_to_koji_tag = {}
|
||||
self.variants = {}
|
||||
self.pkgset = mock.Mock(rpms_by_arch={})
|
||||
|
Loading…
Reference in New Issue
Block a user