Skip to content

Commit e9bb132

Browse files
committed
open browser by default
1 parent f31f612 commit e9bb132

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/fused_local/serve.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ def main(
2424
code_path: Annotated[
2525
Path, typer.Argument(help="Local .py script to watch and render")
2626
],
27+
open: Annotated[
28+
bool, typer.Option(help="Open the map in the default browser")
29+
] = True,
2730
dev: Annotated[
2831
bool,
2932
typer.Option(
3033
help="Enable hot-reloading of frontend code, disable HTTP/2 and TLS"
3134
),
3235
] = False,
33-
open: Annotated[
34-
bool, typer.Option(help="Open the map in the default browser")
35-
] = False,
3636
):
3737
"""Code to map, instantly.
3838

0 commit comments

Comments
 (0)