typehint correction

This commit is contained in:
Daniel Roth 2026-02-16 12:04:49 +00:00
parent b99fb686dd
commit 68c3a20d0a

View file

@ -72,7 +72,7 @@ def _choose_cheapest_relevant_plan(plans: List[Plan]) -> Plan:
return cheapest_plan
def _update_default_flags(plans: List["Plan"], cheapest_plan: Plan) -> None:
def _update_default_flags(plans: List[Plan], cheapest_plan: Plan) -> None:
plans_to_update: List[Plan] = []
for plan in plans: