Skip to content

Commit

Permalink
None
Browse files Browse the repository at this point in the history
  • Loading branch information
SamFerracin committed Aug 1, 2024
1 parent bbb593d commit e64134d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion qiskit_ibm_runtime/utils/noise_learner_result.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ class LindbladErrors:
"""

def __init__(
self, paulis: PauliList, rates: Sequence[float], rates_stderr: Optional[Sequence[float]]
self,
paulis: PauliList,
rates: Sequence[float],
rates_stderr: Optional[Sequence[float]] = None,
) -> None:
if len(paulis) != len(rates):
msg = f"``paulis`` has length {len(paulis)}, but "
Expand Down

0 comments on commit e64134d

Please sign in to comment.