Skip to content

Commit 918ee79

Browse files
changed allow_interspersed location
1 parent 61dcd44 commit 918ee79

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/techui_builder/__main__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
app = typer.Typer(
1515
pretty_exceptions_show_locals=False,
16-
context_settings={"allow_interspersed_args": True},
1716
help="""
1817
A script for building Phoebus GUIs.
1918

src/techui_builder/generate_jsonmap.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ def log_level(level: str):
2222

2323
app = typer.Typer(
2424
pretty_exceptions_show_locals=False,
25+
context_settings={"allow_interspersed_args": True},
2526
help="""
2627
Generate a JSON file mapping of phoebus gui screens.
2728

src/techui_builder/schema_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
SCHEMAS_DIR = Path("schemas")
1212
SCHEMAS_DIR.mkdir(exist_ok=True)
1313

14-
app = typer.Typer()
14+
app = typer.Typer(context_settings={"allow_interspersed_args": True})
1515

1616

1717
def write_json_schema(model_name: str, schema_dict: dict) -> None:

0 commit comments

Comments
 (0)