From 6070b52dcba24f9f438150c4c44ef7751d2768b7 Mon Sep 17 00:00:00 2001
From: Moritz Huebner <email@moritz-huebner.de>
Date: Tue, 5 Jun 2018 00:06:53 +1000
Subject: [PATCH] Set default for `use_ratio` to False instead of None

---
 tupak/sampler.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tupak/sampler.py b/tupak/sampler.py
index e86ab254b..0d18cfce6 100644
--- a/tupak/sampler.py
+++ b/tupak/sampler.py
@@ -39,7 +39,7 @@ class Sampler(object):
 
     def __init__(
             self, likelihood, priors, external_sampler='nestle',
-            outdir='outdir', label='label', use_ratio=None, plot=False,
+            outdir='outdir', label='label', use_ratio=False, plot=False,
             **kwargs):
         self.likelihood = likelihood
         self.priors = priors
-- 
GitLab