mirror of
https://github.com/beetbox/beets.git
synced 2026-02-25 16:53:17 +01:00
Fix flake8 error
This commit is contained in:
parent
98abe69520
commit
30927a901f
1 changed files with 1 additions and 1 deletions
|
|
@ -399,7 +399,7 @@ class EditPlugin(plugins.BeetsPlugin):
|
|||
# Prompt the user for a candidate, and simulate matching.
|
||||
sel = ui.input_options([], numrange=(1, len(task.candidates)))
|
||||
# Force applying the candidate on the items.
|
||||
task.match = task.candidates[sel-1]
|
||||
task.match = task.candidates[sel - 1]
|
||||
task.apply_metadata()
|
||||
|
||||
return self.importer_edit(session, task)
|
||||
|
|
|
|||
Loading…
Reference in a new issue