feat: enricher: +1

This commit is contained in:
2026-04-05 01:52:19 +02:00
parent d8c3813e39
commit 1ed51fdbdb
10 changed files with 97 additions and 10 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ class BaseEnricher(ABC):
def provides(self) -> set[str]: ...
@abstractmethod
def enrich(self, track: TrackMeta) -> Optional[dict]:
async def enrich(self, track: TrackMeta) -> Optional[dict]:
"""Return a dict of {field_name: value} for fields this enricher can fill.
Return None or an empty dict if nothing can be contributed.