From 2864ce50ff545fe404aba66d2ae98e533a547691 Mon Sep 17 00:00:00 2001 From: "Tammo.Weber" Date: Mon, 9 Feb 2026 11:50:07 +0100 Subject: [PATCH] s kleiner 0 --- dashboard.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/dashboard.py b/dashboard.py index 07a955f..bbcde17 100644 --- a/dashboard.py +++ b/dashboard.py @@ -515,8 +515,6 @@ app.layout = html.Div( ) - - # Funktion zur Wahl der Halbachsen @app.callback( Output("input-ax", "value"), @@ -673,8 +671,6 @@ def gha1_method_hint(n, a, nu, st, ap, beta0, lamb0, s, a0, ax, ay, b): return html.Span("β₀ muss im Bereich [-90°, 90°] liegen.", style={"color": "red"}) if not (-180 <= lamb0_f <= 180): return html.Span("λ₀ muss im Bereich [-180°, 180°] liegen.", style={"color": "red"}) - if s_f <= 0: - return html.Span("s muss > 0 sein.", style={"color": "red"}) if not (-180 <= lamb0_f <= 360): return html.Span("α₀ muss im Bereich [-180°, 360°] liegen.", style={"color": "red"})