We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 351c556 commit 5a16c3bCopy full SHA for 5a16c3b
src/pyetm/myc/pool.py
@@ -57,7 +57,7 @@ def get_parameters(
57
58
# get inputs from scenario endpoint
59
with pool.get_client_from_session_id(scenario_id) as client:
60
- inputs = client.get_input_parameters(detailed=True, include_disabled=True)
+ inputs = client.get_input_parameters(detailed=True)
61
62
# # find unused coupling nodes
63
# mask = ~inputs['disabled'] & inputs['coupling_groups']
@@ -68,7 +68,7 @@ def get_parameters(
68
# See related github issue on ETEninge
69
70
# drop disabled parameters
71
- inputs = inputs[~inputs['disabled']]
+ # inputs = inputs[~inputs['disabled']]
72
# inputs = inputs.drop(index=uncoupled)
73
74
# filter parameters
0 commit comments