fixed print statement

This commit is contained in:
2021-03-26 10:28:51 +01:00
parent 66f6e98c55
commit fb6bf45768

View File

@@ -127,8 +127,8 @@ def mc(
# Print results to file # Print results to file
noise_fit.to_csv(file_out_path) noise_fit.to_csv(file_out_path)
print(str("Finishing noise_sd", round(noise_sd, 2), " with ", print("Finishing noise_sd", round(noise_sd, 2), " with ",
str(round(n, 2)), "repetitions, Runtime took ", round(n, 2), "repetitions, Runtime took ",
round(time.time()-runtime, 2), "[s]")) round(time.time()-runtime, 2), "[s]")
return noise_fit, file_out_path return noise_fit, file_out_path