From c09f08fdbcb56271178174755972d65b1e5fb4e6 Mon Sep 17 00:00:00 2001 From: Kevin Murphy Date: Sun, 26 Jan 2020 14:12:29 -0800 Subject: [PATCH] __main__: Remove duplicate --theme argument --- ultratrace2/__main__.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/ultratrace2/__main__.py b/ultratrace2/__main__.py index a5138f5..2d73455 100644 --- a/ultratrace2/__main__.py +++ b/ultratrace2/__main__.py @@ -22,11 +22,6 @@ def main(): default=None, help="path (unique to a participant) where subdirectories contain raw data", ) - parser.add_argument( - "theme", # FIXME: not yet supported - default=None, - help="name of Ttk theme to use for widgets", - ) parser.add_argument( "--no-audio", dest="audio", @@ -57,7 +52,9 @@ def main(): action="store_false", help="don't try to load the video widget", ) - parser.add_argument("--theme", help="TtkTheme to use for application") + parser.add_argument( + "--theme", help="name of Ttk theme to use for widgets", + ) parser.add_argument( "--max-undo-memory", type=int,