Skip to content

Commit 1e1a9dd

Browse files
slilonfe5blnicho
andauthored
Update pyomo/contrib/parmest/parmest.py
Co-authored-by: Bethany Nicholson <blnicho@users.noreply.github.com>
1 parent aea14d3 commit 1e1a9dd

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pyomo/contrib/parmest/parmest.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -522,9 +522,8 @@ def compute_covariance_matrix(
522522
if method == CovarianceMethod.finite_difference.value:
523523
# store the FIM of all experiments
524524
FIM_all_exp = []
525-
for (
526-
experiment
527-
) in experiment_list: # loop through the experiments and compute the FIM
525+
# loop through the experiments and compute the FIM
526+
for experiment in experiment_list:
528527
FIM_all_exp.append(
529528
_finite_difference_FIM(
530529
experiment,

0 commit comments

Comments
 (0)