Change weekend_shift_target_number type from int to float for improved precision

This commit is contained in:
Ross
2026-01-07 20:38:21 +00:00
parent c248e67304
commit c71ae4285a
+1 -1
View File
@@ -177,7 +177,7 @@ class Worker(BaseModel):
shift_fte_overrides: dict[str, int] = {} # Need checks to ensure shifts exist
weekend_shift_target_number: int = 0
weekend_shift_target_number: float = 0.0
avoid_shifts_on_dates: list[AvoidShiftOnDates] = []