From 6cebcb817736586a8d567f3f8013ce6af99fb31e Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Mon, 10 Jun 2019 16:58:48 +0200 Subject: [PATCH] Optimised verbose and debug console options Signed-off-by: Jim Martens --- src/twomartens/masterthesis/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/twomartens/masterthesis/main.py b/src/twomartens/masterthesis/main.py index 11a0732..0584f74 100644 --- a/src/twomartens/masterthesis/main.py +++ b/src/twomartens/masterthesis/main.py @@ -33,8 +33,8 @@ def main() -> None: description="Train, test, and use SSD with novelty detection.", ) - parser.add_argument("--verbose", default=False, action="store_true", help="provide to get extra output") - parser.add_argument("--debug", default=False, action="store_true", help="provide to collect tensorboard summaries") + parser.add_argument("--verbose", action="store_true", help="provide to get extra output") + parser.add_argument("--debug", action="store_true", help="provide to collect tensorboard summaries") parser.add_argument('--version', action='version', version='2martens Masterthesis 0.1.0') sub_parsers = parser.add_subparsers(dest="action") sub_parsers.required = True