mirror of
https://github.com/beetbox/beets.git
synced 2026-02-22 23:33:50 +01:00
Fix mypy incompatible return type in lastgenre
This commit is contained in:
parent
d25c6204eb
commit
0c2af3215c
1 changed files with 1 additions and 1 deletions
|
|
@ -375,7 +375,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