Skip to content

Commit

Permalink
bugfix for new ETM deploy
Browse files Browse the repository at this point in the history
fixes parameter filtering based on new external coupling implementation
  • Loading branch information
robcalon committed Sep 6, 2024
1 parent 351c556 commit 5a16c3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pyetm/myc/pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def get_parameters(

# get inputs from scenario endpoint
with pool.get_client_from_session_id(scenario_id) as client:
inputs = client.get_input_parameters(detailed=True, include_disabled=True)
inputs = client.get_input_parameters(detailed=True)

# # find unused coupling nodes
# mask = ~inputs['disabled'] & inputs['coupling_groups']
Expand All @@ -68,7 +68,7 @@ def get_parameters(
# See related github issue on ETEninge

# drop disabled parameters
inputs = inputs[~inputs['disabled']]
# inputs = inputs[~inputs['disabled']]
# inputs = inputs.drop(index=uncoupled)

# filter parameters
Expand Down

0 comments on commit 5a16c3b

Please sign in to comment.