Fix deduction value from 2.0 to 1.0 across all files for consistency

Co-authored-by: Kenearos <86194771+Kenearos@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2025-12-12 12:04:38 +00:00
parent 89862e918c
commit a2cc8340ee
12 changed files with 51 additions and 50 deletions

View file

@ -14,7 +14,7 @@ from collections import defaultdict
SATZ_WT = 250 # Euro für Werktag
SATZ_WE = 450 # Euro für Wochenende
WE_SCHWELLE = 2.0 # Mindestanzahl WE-Dienste für Vergütung
ABZUG = 2.0 # Abzug nach Erreichen der Schwelle
ABZUG = 1.0 # Abzug nach Erreichen der Schwelle
def load_holidays(wb):