Skip to content
Snippets Groups Projects
Commit 1564adfd authored by MasterScrat's avatar MasterScrat
Browse files

Fixed typo

parent 36fba370
No related branches found
No related tags found
No related merge requests found
...@@ -653,7 +653,7 @@ class FlatlandRemoteEvaluationService: ...@@ -653,7 +653,7 @@ class FlatlandRemoteEvaluationService:
mean_test_complete_percentage = np.mean(self.simulation_percentage_complete_per_test[self.current_test]) 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: if mean_test_complete_percentage < TEST_MIN_PERCENTAGE_COMPLETE_MEAN:
print("=" * 15) 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, mean_test_complete_percentage,
TEST_MIN_PERCENTAGE_COMPLETE_MEAN TEST_MIN_PERCENTAGE_COMPLETE_MEAN
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment