mirror of
https://github.com/beetbox/beets.git
synced 2025-12-28 03:22:39 +01:00
refactor long line for PEP8
This commit is contained in:
parent
431ec5ee7a
commit
b6577b4226
1 changed files with 3 additions and 1 deletions
|
|
@ -69,7 +69,9 @@ class ZeroPlugin(BeetsPlugin):
|
|||
zero_command = Subcommand('zero', help='set fields to null')
|
||||
|
||||
def zero_fields(lib, opts, args):
|
||||
if not decargs(args) and not input_yn(u"Remove fields for all items? (Y/n)", True):
|
||||
if not decargs(args) and not input_yn(
|
||||
u"Remove fields for all items? (Y/n)",
|
||||
True):
|
||||
return
|
||||
for item in lib.items(decargs(args)):
|
||||
self.process_item(item)
|
||||
|
|
|
|||
Loading…
Reference in a new issue