From 2f2d4d1f6ed6a871e572aa8ff2b7b0ccebaabe6f Mon Sep 17 00:00:00 2001 From: nnabi2 Date: Wed, 25 Jun 2025 19:52:30 +0500 Subject: [PATCH] resolved the issue to export app, it requred --format argument which is now set to default html --- preswald/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preswald/cli.py b/preswald/cli.py index 458a2ca4..d94d34fa 100644 --- a/preswald/cli.py +++ b/preswald/cli.py @@ -382,7 +382,7 @@ def tutorial(ctx): @click.option( "--format", type=click.Choice(["pdf", "html"]), - required=True, + default="html", help="Export format - pdf creates a static report, html creates an interactive web app", ) @click.option("--output", type=click.Path(), help="Path to the output directory")