From 9982727de190795c4e381bc42a781593cf656a05 Mon Sep 17 00:00:00 2001 From: Richard Mwewa <74001397+rly0nheart@users.noreply.github.com> Date: Sun, 25 Dec 2022 03:27:55 +0200 Subject: [PATCH] Update config.py --- octosuite/config.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/octosuite/config.py b/octosuite/config.py index 8f5fab8..e62d273 100644 --- a/octosuite/config.py +++ b/octosuite/config.py @@ -1,7 +1,6 @@ import psutil import platform import argparse - from rich.tree import Tree from rich.text import Text from rich.table import Table @@ -142,7 +141,7 @@ def create_parser(): parser.add_argument('-c', '--colors', '--colours', help='specify to run octosuite cli with colo[u]rs enabled', action='store_true') parser.add_argument('--csv_file', help='specify a csv file (used with csv management methods)') parser.add_argument('--log_file', help='specify a log file (used with logs management methods)') - parser.add_argument('--log_csv', help='specify to log output to a csv', action='store_true') + parser.add_argument('--log_csv', help='log output to a csv (default: %(default)s)', choices=['yes', 'no'], default='no') return parser