mirror of
https://github.com/beetbox/beets.git
synced 2026-03-26 15:24:05 +01:00
Set ImportTask.candidates to None by default
This commit is contained in:
parent
7b93269ae9
commit
7ea42c7d50
1 changed files with 1 additions and 1 deletions
|
|
@ -167,7 +167,7 @@ class ImportTask(BaseImportTask):
|
|||
# Keep track of the current task item
|
||||
cur_album: str | None = None
|
||||
cur_artist: str | None = None
|
||||
candidates: Sequence[AlbumMatch | TrackMatch] = []
|
||||
candidates: Sequence[AlbumMatch | TrackMatch] | None = None
|
||||
rec: Recommendation | None = None
|
||||
|
||||
def __init__(
|
||||
|
|
|
|||
Loading…
Reference in a new issue