From 4fcccc6aa21c178ba9f8a1d302f47bc8b44f243f Mon Sep 17 00:00:00 2001 From: hagrid67 <jdhwatson@gmail.com> Date: Mon, 29 Jul 2019 20:22:33 +0100 Subject: [PATCH] fixed rst http link to ObservationBuilder.py --- docs/getting_start_with_observationbuilder.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting_start_with_observationbuilder.rst b/docs/getting_start_with_observationbuilder.rst index b9059c13..5f655989 100644 --- a/docs/getting_start_with_observationbuilder.rst +++ b/docs/getting_start_with_observationbuilder.rst @@ -17,7 +17,7 @@ In this first example we implement all the functions necessary for the observati Custom observation builder objects need to derive from the `flatland.core.env_observation_builder.ObservationBuilder`_ base class and must implement two methods, :code:`reset(self)` and :code:`get(self, handle)`. -.. _`flatland.core.env_observation_builder.ObservationBuilder` : https://gitlab.aicrowd.com/flatland/flatland/blob/obsbuildertut/flatland/core/env_observation_builder.py#L13 +.. _`flatland.core.env_observation_builder.ObservationBuilder` : https://gitlab.aicrowd.com/flatland/flatland/blob/master/flatland/core/env_observation_builder.py#L13 Below is a simple example that returns observation vectors of size :code:`observation_space = 5` featuring only the ID (handle) of the agent whose observation vector is being computed: -- GitLab