From d6d3ac9655cc00ccf83de69c57f5cde01d140445 Mon Sep 17 00:00:00 2001 From: Thomas Albers Raviola Date: Fri, 23 Aug 2024 10:26:31 +0200 Subject: Change 'show' default value in schrodinger_plot --- schroedinger/schrodinger_plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/schroedinger/schrodinger_plot.py b/schroedinger/schrodinger_plot.py index f9e48b6..b7d3cf9 100644 --- a/schroedinger/schrodinger_plot.py +++ b/schroedinger/schrodinger_plot.py @@ -141,7 +141,7 @@ def main(): msg = 'the path where the pdf should be saved (default: None)' parser.add_argument('-o', '--output_dir', help=msg) msg = 'Boolean, if True the plot is shown directly (default: True)' - parser.add_argument('--show', default=True, help=msg, type=bool) + parser.add_argument('--show', default=False, help=msg, type=bool) msg = 'Boolean, if True the plot is exported as a pdf (default: True)' parser.add_argument('-e', '--export', default=True, help=msg, type=bool) msg = 'Float, scales the wave functions (default: 1.0)' -- cgit v1.2.3