Verified Commit 67e1c554 authored by Jakob Moser's avatar Jakob Moser
Browse files

Reformat file

parent 70707558
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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]: