From f3c328ebf64a4e810e3127587b5b41976896b764 Mon Sep 17 00:00:00 2001 From: Shing Chan Date: Tue, 3 Dec 2024 14:56:00 +0000 Subject: [PATCH] fix: remove trailing comma in argparse help messages --- src/stepcount/stepcount.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stepcount/stepcount.py b/src/stepcount/stepcount.py index aac913e..7599ba9 100644 --- a/src/stepcount/stepcount.py +++ b/src/stepcount/stepcount.py @@ -56,11 +56,11 @@ def main(): type=str, choices=['first', 'last', 'both'], default=None) parser.add_argument("--start", help=("Specicfy a start time for the data to be processed (otherwise, process all). " - "Pass values as strings, e.g.: '2024-01-01 10:00:00'. Default: None",), + "Pass values as strings, e.g.: '2024-01-01 10:00:00'. Default: None"), type=str, default=None) parser.add_argument("--end", help=("Specicfy an end time for the data to be processed (otherwise, process all). " - "Pass values as strings, e.g.: '2024-01-02 09:59:59'. Default: None",), + "Pass values as strings, e.g.: '2024-01-02 09:59:59'. Default: None"), type=str, default=None) parser.add_argument('--quiet', '-q', action='store_true', help='Suppress output') args = parser.parse_args()