Skip to content

Commit 4c53a88

Browse files
committed
change collection of systems in InterconnectedSystem, from tuple () -> list []
1 parent 1cf566d commit 4c53a88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/mrac_siso_direct_mit_rule_statespace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def adaptive_controller_output(t, xc, uc, params):
116116

117117
# Overall closed loop system
118118
io_closed = ct.InterconnectedSystem(
119-
(io_plant, io_ref_model, io_controller),
119+
[io_plant, io_ref_model, io_controller],
120120
connections=[
121121
['plant.u', 'control.u'],
122122
['control.xm', 'ref_model.xm'],

0 commit comments

Comments
 (0)