From 115d3c285ca39ed985d1fa9f9c0d335a5c6a8235 Mon Sep 17 00:00:00 2001
From: Gregory Ashton <gregory.ashton@ligo.org>
Date: Mon, 17 Jul 2017 10:18:35 +0200
Subject: [PATCH] Closes #2

Removes the forced `int` for `fmin` in MFD. As noted by David, this
isn't required.
---
 pyfstat/core.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pyfstat/core.py b/pyfstat/core.py
index 3907be0..1016d0c 100755
--- a/pyfstat/core.py
+++ b/pyfstat/core.py
@@ -1094,7 +1094,7 @@ transientTauDays={:1.3f}\n""")
         else:
             data_duration = self.maxStartTime - self.minStartTime
             cl_mfd.append('--duration={}'.format(int(data_duration)))
-        cl_mfd.append('--fmin={}'.format(int(self.fmin)))
+        cl_mfd.append('--fmin={}'.format(self.fmin))
         cl_mfd.append('--Band={}'.format(self.Band))
         cl_mfd.append('--Tsft={}'.format(self.Tsft))
         if self.h0 != 0:
-- 
GitLab