summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2020-10-30 15:42:51 +0100
committerDaniel Friesel <daniel.friesel@uos.de>2020-10-30 15:42:51 +0100
commit2b96eb45ba2831156d463d1846b55624dde3f373 (patch)
treef1ba92104b98a2450b6c83f418be0866aeca3f88
parent47ed6f7b3ff8a9f4afe3934d93a838bf30ea9d77 (diff)
--skip is float, not int
-rwxr-xr-xbin/msp430-etv2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/msp430-etv b/bin/msp430-etv
index c81dbc2..2834849 100755
--- a/bin/msp430-etv
+++ b/bin/msp430-etv
@@ -260,7 +260,7 @@ def main():
parser.add_argument(
"--skip",
metavar="N",
- type=int,
+ type=float,
default=0,
help="Skip the first N seconds of data. This is useful to avoid startup code influencing the results of a long-running measurement",
)