Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
WrathfulSpatula committed Mar 7, 2025
1 parent ab5c147 commit c96e792
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metriq_gym/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def poll_job(args: argparse.Namespace, job_manager: JobManager, is_upload: bool=
logger.info("Polling job...")
metriq_job: MetriqGymJob = job_manager.get_job(args.job_id)
job_type: JobType = JobType(metriq_job.job_type)
job_data: BenchmarkData = setup_job_data_class(job_type)(**metriq_job.data)
job_data: QuantumVolumeData | BSEQData = setup_job_data_class(job_type)(**metriq_job.data)
handler = setup_benchmark(args, None, job_type)
quantum_job = [
load_job(job_id, provider=metriq_job.provider_name, **asdict(job_data))
Expand Down

0 comments on commit c96e792

Please sign in to comment.