mirror of
https://github.com/beetbox/beets.git
synced 2026-03-07 05:34:40 +01:00
Fix mypy incompatible return type in lastgenre
This commit is contained in:
parent
10d197e242
commit
0191ecf576
1 changed files with 1 additions and 1 deletions
|
|
@ -378,7 +378,7 @@ class LastGenrePlugin(plugins.BeetsPlugin):
|
|||
|
||||
def _try_resolve_stage(
|
||||
stage_label: str, keep_genres: list[str], new_genres: list[str]
|
||||
) -> tuple[str, str] | None:
|
||||
) -> tuple[list[str], str] | None:
|
||||
"""Try to resolve genres for a given stage and log the result."""
|
||||
resolved_genres = self._combine_resolve_and_log(
|
||||
keep_genres, new_genres
|
||||
|
|
|
|||
Loading…
Reference in a new issue