for job in jobs:
results.append(job.result(**self._qjob_config))
iflen(jobs)== 1:
results = results[0]
return results
@staticmethoddef register_and_get_operational_backends(qconfig):
After Change
for job in jobs:
results.append(job.result(**self._qjob_config))
result = functools.reduce(lambda x, y: x + y, results)return result
@staticmethoddef register_and_get_operational_backends(qconfig):