From 962c9a2f380ac3796e847517786654415ec1b8e9 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Sun, 11 May 2025 19:13:19 +0000 Subject: [PATCH] print all steps that we are running with --- crawler/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/crawler/main.py b/crawler/main.py index 4e49dd2..061c14b 100644 --- a/crawler/main.py +++ b/crawler/main.py @@ -25,6 +25,7 @@ steps_to_handlers = { type=click.Choice(steps_to_handlers.keys()) ) def main(step: list[str]): + click.echo(f'Running steps: {step}') for s in step: click.echo(f'Calling handler for step: {s}') steps_to_handlers[s]()