From a4d7fdc3ae8d67599d387a457ab207e2956dfd18 Mon Sep 17 00:00:00 2001 From: flaurent <florian.laurent@gmail.com> Date: Mon, 28 Sep 2020 13:49:52 +0300 Subject: [PATCH] Making shuffle=False the default for infinite wave --- flatland/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flatland/cli.py b/flatland/cli.py index 51db57b3..2bd5cca2 100644 --- a/flatland/cli.py +++ b/flatland/cli.py @@ -63,7 +63,7 @@ def demo(args=None): ) @click.option('--shuffle', type=bool, - default=True, + default=False, help="Shuffle the environments before starting evaluation.", required=False ) -- GitLab