Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion control/iosys.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,8 @@ def __init__(self, inputs=None, outputs=None, states=None, params={},
nstates = 0

def __repr__(self):
return self.name if self.name is not None else str(type(self))
return f'<{self.__class__.__name__}:{self.name}:{list(self.input_index)}->{list(self.output_index)}>'


def __str__(self):
"""String representation of an input/output system"""
Expand Down