We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbe11fc commit 145e2f7Copy full SHA for 145e2f7
rdagent/log/ui/app.py
@@ -460,9 +460,10 @@ def tasks_window(tasks: list[FactorTask | ModelTask]):
460
st.latex(mt.formulation)
461
462
mks = "| Variable | Description |\n| --- | --- |\n"
463
- for v, d in mt.variables.items():
464
- mks += f"| ${v}$ | {d} |\n"
465
- st.markdown(mks)
+ if mt.variables:
+ for v, d in mt.variables.items():
+ mks += f"| ${v}$ | {d} |\n"
466
+ st.markdown(mks)
467
468
469
def research_window():
0 commit comments