File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
qiskit_experiments/curve_analysis Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 1010# copyright notice, and modified files need to carry a notice indicating
1111# that they have been altered from the originals.
1212
13- """
13+ r """
1414=========================================================
1515Curve Analysis (:mod:`qiskit_experiments.curve_analysis`)
1616=========================================================
Original file line number Diff line number Diff line change @@ -708,7 +708,9 @@ def _run_analysis(
708708
709709 # Valid data index for this group
710710 if len (self .__series__ ) > 1 :
711- series_inds = [i for i , s in enumerate (self .__series__ ) if s .group == fit_func .group ]
711+ series_inds = [
712+ i for i , s in enumerate (self .__series__ ) if s .group == fit_func .group
713+ ]
712714 data_inds = np .full (index .size , False , dtype = bool )
713715 for i in series_inds :
714716 data_inds |= index == i
You can’t perform that action at this time.
0 commit comments