Skip to content

Commit

Permalink
Disable pylint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
rbrazinskas committed Dec 22, 2023
1 parent 724600b commit eb9543b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/iqm/cirq_iqm/iqm_sampler.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def _send_circuits(
if results.measurements is None:
raise RuntimeError('No measurements returned from IQM quantum computer.')

return (
return ( # pylint: disable=not-an-iterable,no-member
[{k: np.array(v) for k, v in measurements.items()} for measurements in results.measurements],
ResultMetadata(job_id, results.metadata.calibration_set_id, results.metadata.request),
)
Expand Down

0 comments on commit eb9543b

Please sign in to comment.