From 4cbc4c631e5605de1c5a0ce6f6b12874780f49e6 Mon Sep 17 00:00:00 2001 From: Franz Waibl <44898997+fwaibl@users.noreply.github.com> Date: Tue, 25 Feb 2025 09:00:02 +0100 Subject: [PATCH] Fix help message in commandline_electrostatic.py Update the unit in the help message of --size_cutoff to be nm^2 --- surface_analyses/commandline_electrostatic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/surface_analyses/commandline_electrostatic.py b/surface_analyses/commandline_electrostatic.py index 9c5cd72..d012623 100644 --- a/surface_analyses/commandline_electrostatic.py +++ b/surface_analyses/commandline_electrostatic.py @@ -122,7 +122,7 @@ def parse_args(argv=None): '-s','--size_cutoff', type=float, default=0., - help='Restrict output to patches with an area of over s A^2. If s = 0, no cutoff is applied (default).', + help='Restrict output to patches with an area of over s nm^2. If s = 0, no cutoff is applied (default).', ) parser.add_argument('--gauss_shift', type=float, default=0.1) parser.add_argument('--gauss_scale', type=float, default=1.0)