This should do…

This commit is contained in:
Konstantin 2024-08-25 19:18:15 +02:00
parent 5d1da3e438
commit b84912db5f
3 changed files with 687 additions and 729 deletions

View file

@ -78,7 +78,7 @@ class Recommendation(OrderedEnum):
class Proposal(NamedTuple):
candidates: List[Any]
candidates: Sequence[AlbumMatch | TrackMatch]
recommendation: Recommendation

View file

@ -16,11 +16,14 @@
libraries.
"""
from collections import namedtuple
from typing import Any, NamedTuple
from beets import util
Node = namedtuple("Node", ["files", "dirs"])
class Node(NamedTuple):
files: dict[Any, Any]
dirs: dict[Any, Any]
def _insert(node, path, itemid):

1407
poetry.lock generated

File diff suppressed because it is too large Load diff