diff options
author | Thomas Albers Raviola <thomas@thomaslabs.org> | 2024-08-23 10:26:31 +0200 |
---|---|---|
committer | Thomas Albers Raviola <thomas@thomaslabs.org> | 2024-08-23 10:26:31 +0200 |
commit | d6d3ac9655cc00ccf83de69c57f5cde01d140445 (patch) | |
tree | 9720aa17a9d2f54f92ab4527f6e0024b8f109391 | |
parent | 2badfec0af21bff0620ff564a858069bd9690786 (diff) |
Change 'show' default value in schrodinger_plot
-rw-r--r-- | schroedinger/schrodinger_plot.py | 2 |
1 files changed, 1 insertions, 1 deletions
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)' |