Remove vars assigned to but never used

zuul/cmd/migrate.py contained two variables that are assigned but never
used, flake 3.6.0 found these. They were hidden by the earlier "flake8:
noqa" in the file that earlier flake8 versions treated as file level
ignore wherever it appeared.

Remove the two variables found.

Change-Id: I7dca305da5bf605386590d96bec0150e06b8ff6d
This commit is contained in:
Andreas Jaeger 2018-10-28 16:02:09 +01:00
parent 74346801b2
commit f856841c49
1 changed files with 0 additions and 3 deletions

View File

@ -194,12 +194,10 @@ def merge_project_dict(project_dicts, name, project):
def normalize_project_expansions():
remove_from_job_matchers = []
template = None
# First find the matchers that are the same for all jobs
for job_name, project in copy.deepcopy(JOBS_FOR_EXPAND).items():
JOB_MATCHERS[job_name] = None
for project_name, expansion in project.items():
template = expansion['template']
if not JOB_MATCHERS[job_name]:
JOB_MATCHERS[job_name] = copy.deepcopy(expansion['info'])
else:
@ -1270,7 +1268,6 @@ class ZuulMigrate:
pass
def setupDir(self):
zuul_yaml = os.path.join(self.outdir, 'zuul.yaml')
zuul_d = os.path.join(self.outdir, 'zuul.d')
job_outfile = os.path.join(zuul_d, 'zuul-legacy-jobs.yaml')
project_outfile = os.path.join(zuul_d, 'projects.yaml')