Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tests/test_differential_beancount.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from collections import defaultdict
from decimal import Decimal
from pathlib import Path
from typing import Any
from typing import TYPE_CHECKING

import pytest
Expand Down Expand Up @@ -110,7 +111,7 @@ def test_booked_inventories_match_beancount(ledger: str) -> None:
)


def _balance_dirs(entries: Iterable[object]) -> list[object]:
def _balance_dirs(entries: Iterable[object]) -> list[Any]:
return [e for e in entries if type(e).__name__ in {"Balance", "RLBalance"}]


Expand Down
Loading