Skip to content

Commit

Permalink
Fix more rebase errors
Browse files Browse the repository at this point in the history
  • Loading branch information
chriseclectic committed May 17, 2021
1 parent 3e57636 commit c9c2958
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions qiskit_experiments/characterization/t1_experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def _run_analysis(
amplitude_bounds=None,
offset_bounds=None,
plot=True,
ax=None,
) -> Tuple[AnalysisResult, None]:
"""
Calculate T1
Expand All @@ -84,6 +85,7 @@ def _run_analysis(
offset_bounds (list of two floats): Optional, lower bound and upper
bound to the offset
plot (bool): Generator plot of exponential fit.
ax (AxesSubplot): Optional, axes to add figure to.
Returns:
The analysis result with the estimated T1
Expand Down
2 changes: 1 addition & 1 deletion qiskit_experiments/composite/composite_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def _run_analysis(self, experiment_data: CompositeExperimentData, **options):

# Run analysis for sub-experiments
for expr, expr_data in zip(
experiment_data._experiment._experiments, experiment_data._composite_expdata
experiment_data._experiment._experiments, experiment_data._components
):
expr.run_analysis(expr_data, **options)

Expand Down

0 comments on commit c9c2958

Please sign in to comment.