Skip to content
Snippets Groups Projects
Commit 9db52cb4 authored by Matthew David Pitkin's avatar Matthew David Pitkin
Browse files

Add str and repr methods to ResultList

parent bb832ad6
No related branches found
No related tags found
2 merge requests!459Combining results,!424WIP: Class to hold and combine multiple results
......@@ -1349,6 +1349,12 @@ class ResultList(object):
return result
def __str__(self):
return str(self.results)
def __repr__(self):
return repr(self.results)
def plot_multiple(results, filename=None, labels=None, colours=None,
save=True, evidences=False, **kwargs):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment