From 01bf256dcb2fd1f7fa298101bce376bf98d5be9d Mon Sep 17 00:00:00 2001 From: John Burwell Date: Sat, 29 Apr 2023 22:23:21 -0500 Subject: [PATCH] add comments --- rsbbs/args.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rsbbs/args.py b/rsbbs/args.py index 744ecf2..bead018 100644 --- a/rsbbs/args.py +++ b/rsbbs/args.py @@ -31,10 +31,10 @@ def parse_args(): # Configure args: args_list = [ # [ short, long, action, default, dest, help, required ] + # Debug flag: ['-d', '--debug', 'store_true', None, 'debug', 'Enable debugging output to stdout', False], - # ['-s', '--calling-station', 'store', 'N0CALL', 'calling_station', - # 'Callsign of the calling station', True], + # Config file path: ['-f', '--config-file', 'store', None, 'config_file', 'Path to config.yaml file', False], ]