From fcb961d44af1f456a50f64865490367fe61ac061 Mon Sep 17 00:00:00 2001
From: mlerik <baerenjesus@gmail.com>
Date: Thu, 18 Jul 2019 16:55:08 +0000
Subject: [PATCH] Update README.md

---
 scoring/README.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/scoring/README.md b/scoring/README.md
index e749803..b054935 100644
--- a/scoring/README.md
+++ b/scoring/README.md
@@ -53,9 +53,9 @@ observation_builder = TreeObsForRailEnv(max_depth=tree_depth, predictor=predicto
 The agent and the observation builder as well as an observation wrapper can be passed to the test function like this
 
 ```
-    test_score, test_dones, test_time = run_test(current_parameters, agent, observation_builder=your_observation_builder,
-                                                 observation_wrapper=your_observation_wrapper,
-                                                 test_nr=test_nr, nr_trials_per_test=10)
+test_score, test_dones, test_time = run_test(current_parameters, agent, observation_builder=your_observation_builder,
+                                             observation_wrapper=your_observation_wrapper,
+                                             test_nr=test_nr, nr_trials_per_test=10)
 ```
 
 In order to speed up the test time you can limit the number of trials per test (`nr_trials_per_test=10`). After you have made these changes to the file you can run `python score_tests.py` which will produce an output similiar to this:
-- 
GitLab