Loading muffin/budget_plan/BudgetPlanLoader.py +4 −2 Original line number Diff line number Diff line Loading @@ -23,7 +23,9 @@ def _parse_budgetary_item_row(row: Sequence[str]) -> BudgetaryItem: def _is_combined_row(row: Sequence[str]) -> bool: return row[0] and all(not row[i] for i in range(1, len(row))) and row[0][0].isdigit() return ( row[0] and all(not row[i] for i in range(1, len(row))) and row[0][0].isdigit() ) def _parse_combined_row(row: Sequence[str]) -> tuple[str, str]: Loading Loading
muffin/budget_plan/BudgetPlanLoader.py +4 −2 Original line number Diff line number Diff line Loading @@ -23,7 +23,9 @@ def _parse_budgetary_item_row(row: Sequence[str]) -> BudgetaryItem: def _is_combined_row(row: Sequence[str]) -> bool: return row[0] and all(not row[i] for i in range(1, len(row))) and row[0][0].isdigit() return ( row[0] and all(not row[i] for i in range(1, len(row))) and row[0][0].isdigit() ) def _parse_combined_row(row: Sequence[str]) -> tuple[str, str]: Loading