Skip to content

Commit

Permalink
set extra_args from parse_args to Ensemble attribute (#1081)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlnav authored Sep 11, 2023
1 parent 97979c3 commit ea66222
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libensemble/ensemble.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def __init__(
self.parsed = True

def parse_args(self) -> (int, bool, LibeSpecs):
self.nworkers, self.is_manager, libE_specs_parsed, _ = parse_args_f()
self.nworkers, self.is_manager, libE_specs_parsed, self.extra_args = parse_args_f()

if not self._libE_specs:
self._libE_specs = LibeSpecs(**libE_specs_parsed)
Expand Down

0 comments on commit ea66222

Please sign in to comment.