@@ -51,7 +51,7 @@ you can explicitly pass ``None`` to the environment constructor.
5151 >>> env = ecole.environment.Branching(observation_function = None )
5252 >>> env.observation_function # doctest: +SKIP
5353 ecole.observation.nothing()
54- >>> obs, _, _, _, _= env.reset(" path/to/problem" )
54+ >>> obs, _, _, _, _ = env.reset(" path/to/problem" )
5555 >>> obs is None
5656 True
5757
@@ -64,8 +64,8 @@ To use multiple observation functions, wrap them in a ``list`` or ``dict``.
6464.. doctest ::
6565
6666 >>> obs_func = {
67- ... " some_name" : ecole.observation.NodeBipartite(),
68- ... " other_name" : ecole.observation.Nothing(),
67+ ... " some_name" : ecole.observation.NodeBipartite(),
68+ ... " other_name" : ecole.observation.Nothing(),
6969 ... }
7070 >>> env = ecole.environment.Branching(observation_function = obs_func)
7171 >>> obs, _, _, _, _ = env.reset(" path/to/problem" )
@@ -78,9 +78,7 @@ Similarily with a tuple
7878
7979.. doctest ::
8080
81- >>> obs_func = (
82- ... ecole.observation.NodeBipartite(), ecole.observation.Nothing()
83- ... )
81+ >>> obs_func = (ecole.observation.NodeBipartite(), ecole.observation.Nothing())
8482 >>> env = ecole.environment.Branching(observation_function = obs_func)
8583 >>> obs, _, _, _, _ = env.reset(" path/to/problem" )
8684 >>> obs # doctest: +SKIP
0 commit comments