Skip to content

Commit

Permalink
fix: remove trailing comma in argparse help messages
Browse files Browse the repository at this point in the history
  • Loading branch information
chanshing committed Dec 3, 2024
1 parent 6c5d9de commit aadbfc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stepcount/stepcount.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit aadbfc6

Please sign in to comment.