diff options
-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)' |