File diff 2fddb86c05a9 → 2ea1af3149c2
stockcli/cli.py
Show inline comments
 
import json
 
import logging
 
import logging.config
 
from operator import itemgetter
 

	
 
@@ -62,6 +63,7 @@ def stockcli(ctx: click.Context, configf
 
        choice = prompt.ask(
 
            "Enter a number to select a task", choices=list(TASK_MAP.keys())
 
        )
 
        logging.debug(f"User selected task: {choice}")
 
        selected_task = TASK_MAP[choice][1]
 

	
 
        rerun = True