From fb6bf457689d796b69b28dd8f8a2ae60b1d74546 Mon Sep 17 00:00:00 2001 From: "konstantin.bosbach" Date: Fri, 26 Mar 2021 10:28:51 +0100 Subject: [PATCH] fixed print statement --- fsl_mrs_mce/mc_gen.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fsl_mrs_mce/mc_gen.py b/fsl_mrs_mce/mc_gen.py index a739a8e..3207e24 100644 --- a/fsl_mrs_mce/mc_gen.py +++ b/fsl_mrs_mce/mc_gen.py @@ -127,8 +127,8 @@ def mc( # Print results to file noise_fit.to_csv(file_out_path) - print(str("Finishing noise_sd", round(noise_sd, 2), " with ", - str(round(n, 2)), "repetitions, Runtime took ", - round(time.time()-runtime, 2), "[s]")) + print("Finishing noise_sd", round(noise_sd, 2), " with ", + round(n, 2), "repetitions, Runtime took ", + round(time.time()-runtime, 2), "[s]") return noise_fit, file_out_path