Add functionality to future_pto_calc, remove calendar_conflict step from goal

This commit is contained in:
Laine
2025-03-13 14:19:13 -04:00
parent 5ac2a6eb0a
commit a7a90c3289
7 changed files with 78 additions and 66 deletions

View File

@@ -10,7 +10,6 @@ from .transfer_control import transfer_control
from .current_pto import current_pto
from .book_pto import book_pto
from .calendar_conflict import calendar_conflict
from .future_pto_calc import future_pto_calc
@@ -37,8 +36,6 @@ def get_handler(tool_name: str):
return current_pto
if tool_name == "BookPTO":
return book_pto
if tool_name == "CalendarConflict":
return calendar_conflict
if tool_name == "FuturePTOCalc":
return future_pto_calc