Skip to content

Commit 99df6ff

Browse files
Fix field default mako split across lines
Wasn't able to run in the plaground with a hard error: ``` Syntax Error: unexpected indent (<unknown>, line 2) In file docassemble.ALDashboard:data/questions/install_assembly_line.yml in the block on line 500 from package docassemble.ALDashboard: ``` Wasn't caught by DAYamlChecker, but that fix is incoming as well.
1 parent af492eb commit 99df6ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docassemble/ALDashboard/data/questions/install_assembly_line.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -665,8 +665,8 @@ fields:
665665
- medium
666666
- high
667667
default: |
668-
${ the_config.get("open ai", {}).get("reasoning effort")
669-
if the_config.get("open ai", {}).get("reasoning effort") in ["low", "medium", "high"]
668+
${ the_config.get("open ai", {}).get("reasoning effort") \
669+
if the_config.get("open ai", {}).get("reasoning effort") in ["low", "medium", "high"] \
670670
else "low" }
671671
show if: configure_api_llm
672672
- Configure [e-filing](https://assemblyline.suffolklitlab.org/docs/components/EFSPIntegration/overview): configure_api_efile

0 commit comments

Comments
 (0)