From 1564adfd3565a3e74a7b710dd6351b59c5e97e8d Mon Sep 17 00:00:00 2001
From: flaurent <florian.laurent@gmail.com>
Date: Mon, 7 Sep 2020 14:31:52 +0200
Subject: [PATCH] Fixed typo

---
 flatland/evaluators/service.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flatland/evaluators/service.py b/flatland/evaluators/service.py
index 9dd83d66..a18e4363 100644
--- a/flatland/evaluators/service.py
+++ b/flatland/evaluators/service.py
@@ -653,7 +653,7 @@ class FlatlandRemoteEvaluationService:
             mean_test_complete_percentage = np.mean(self.simulation_percentage_complete_per_test[self.current_test])
             if mean_test_complete_percentage < TEST_MIN_PERCENTAGE_COMPLETE_MEAN:
                 print("=" * 15)
-                msg = "The mean percentage of done agents during the last 10 environments was too low: {:.f} < {}".format(
+                msg = "The mean percentage of done agents during the last 10 environments was too low: {:.3f} < {}".format(
                     mean_test_complete_percentage,
                     TEST_MIN_PERCENTAGE_COMPLETE_MEAN
                 )
-- 
GitLab