From 01ab25f5b5e10754ac239743e4e11c416dbc1229 Mon Sep 17 00:00:00 2001 From: Robert Izzard <r.izzard@surrey.ac.uk> Date: Thu, 14 Oct 2021 22:50:20 +0100 Subject: [PATCH] include info on number of masses in the mass list --- binarycpython/utils/spacing_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binarycpython/utils/spacing_functions.py b/binarycpython/utils/spacing_functions.py index 1df93cb43..bbc32abbe 100644 --- a/binarycpython/utils/spacing_functions.py +++ b/binarycpython/utils/spacing_functions.py @@ -383,6 +383,6 @@ def const_dt(self, mass_list = np.log10(mass_list) if showlist: - print("const_dt mass list\n",mass_list) + print("const_dt mass list ({} masses)\n".format(len(mass_list)),mass_list) return mass_list -- GitLab