From f4bb55558de5319e9df6101157570e6356848414 Mon Sep 17 00:00:00 2001 From: niv vaknin Date: Wed, 1 Jan 2025 15:18:43 +0200 Subject: [PATCH] Address comments --- Quorum/entry_points/setup_quorum.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quorum/entry_points/setup_quorum.py b/Quorum/entry_points/setup_quorum.py index f37bed4..6934a1d 100644 --- a/Quorum/entry_points/setup_quorum.py +++ b/Quorum/entry_points/setup_quorum.py @@ -8,7 +8,7 @@ def get_working_directory() -> Path: parser = argparse.ArgumentParser(description="Setup Quorum project.") parser.add_argument( '--working_dir', - default=Path.cwd(), + default=Path.cwd() / 'quorum_project', type=Path, help="Directory to set up the Quorum project." )