From b3a4e74692788c31e3b0a18c2f28369db3ee66a4 Mon Sep 17 00:00:00 2001
From: "S.P. Mohanty" <spmohanty91@gmail.com>
Date: Fri, 5 Jun 2020 18:06:03 +0200
Subject: [PATCH] use default None for results output path in cli

---
 flatland/cli.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/flatland/cli.py b/flatland/cli.py
index 7f3b95fd..9bb71074 100644
--- a/flatland/cli.py
+++ b/flatland/cli.py
@@ -63,7 +63,7 @@ def demo(args=None):
               )
 @click.option('--results_path',
               type=click.Path(exists=False),
-              default=False,
+              default=None,
               help="Path where the evaluator should write the results metadata.",
               required=False
               )
-- 
GitLab