Verified Commit c92193d3 authored by Jakob Moser's avatar Jakob Moser
Browse files

Add missing return type annotation

parent cdf6bda7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ def _load_csv_lines(csv_lines: Iterable[str]) -> BudgetPlan:
    current_cash_flow_direction: Optional[CashFlowDirection] = None
    current_items: list[BudgetaryItem] = []

    def add_group():
    def add_group() -> None:
        nonlocal current_group_id
        nonlocal current_group_name
        nonlocal current_items