From a162701e94fa82021c1f69335b0df563a06fa6bb Mon Sep 17 00:00:00 2001 From: Luigi Maiorano Date: Tue, 3 Feb 2026 02:22:06 +0100 Subject: [PATCH] move cell for better running --- 03_quant_report.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/03_quant_report.py b/03_quant_report.py index b8f642c..54c9c63 100644 --- a/03_quant_report.py +++ b/03_quant_report.py @@ -154,6 +154,12 @@ def _(): return +@app.cell +def _(): + BEST_CHOSEN_CHARACTER = "the_coach" + return (BEST_CHOSEN_CHARACTER,) + + @app.cell def _(S): filter_form = mo.md(''' @@ -187,12 +193,6 @@ def _(S): return (filter_form,) -@app.cell -def _(): - BEST_CHOSEN_CHARACTER = "the_coach" - return (BEST_CHOSEN_CHARACTER,) - - @app.cell def _(S, data_validated, filter_form): mo.stop(filter_form.value is None, mo.md("**Please submit filter above to proceed**"))