Source code for pyleecan.Methods.Output.XOutput.remove
[docs]def remove(self, x):
"""
Remove the first item from the list whose value is equal to x.
It raises a ValueError if there is no such item.
"""
return self.output_list.remove(x)