From 46d0b1276a4982ebe01bdf750ed08b9845debca3 Mon Sep 17 00:00:00 2001 From: Gregory Ashton <gregory.ashton@ligo.org> Date: Sat, 23 Jun 2018 15:57:43 +1000 Subject: [PATCH] Add explicit methods This adds methods to __dir__ so that plot_corner and other methods can be tab completed (in ipython). Unfortunately, this is done by setting these directly. While this isn't an ideal solution - there is no obvious way to automate the process as methods to looks up all methods themselves use the __dir__ attribute causing a recursion error. Closes #111 --- tupak/core/result.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tupak/core/result.py b/tupak/core/result.py index b9e7a6467..7b60d3daa 100644 --- a/tupak/core/result.py +++ b/tupak/core/result.py @@ -76,7 +76,8 @@ class Result(dict): See: http://ipython.org/ipython-doc/dev/config/integrating.html """ - return self.keys() + methods = ['plot_corner', 'save_to_file', 'save_posterior_samples'] + return self.keys() + methods def __getattr__(self, name): try: -- GitLab