Skip to content

Commit 679f269

Browse files
authored
Wrap comment to <88 columns (black)
1 parent aaeda4e commit 679f269

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pyomo/contrib/parmest/parmest.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,9 @@ def __init__(
309309
for experiment in self.exp_list:
310310
model = experiment.get_labeled_model()
311311
theta_names.extend([k.name for k, v in model.unknown_parameters.items()])
312-
# Utilize list(dict.fromkeys(theta_names)) to preserve parameter order compared with list(set(theta_names)), which had nondeterministic ordering of parameters
312+
# Utilize list(dict.fromkeys(theta_names)) to preserve parameter
313+
# order compared with list(set(theta_names)), which had
314+
# nondeterministic ordering of parameters
313315
self.estimator_theta_names = list(dict.fromkeys(theta_names))
314316

315317
self._second_stage_cost_exp = "SecondStageCost"

0 commit comments

Comments
 (0)