mirror of
https://github.com/beetbox/beets.git
synced 2025-12-24 01:25:47 +01:00
Revert extra variables and whitespace from #1402
This commit is contained in:
parent
04bca2f48c
commit
018f479ced
1 changed files with 6 additions and 9 deletions
|
|
@ -95,18 +95,15 @@ def fields_func(lib, opts, args):
|
|||
_print_rows(plugin_fields)
|
||||
|
||||
print("Item fields:")
|
||||
item_fields = (library.Item._fields.keys() +
|
||||
library.Item._getters().keys() +
|
||||
library.Item._types.keys())
|
||||
|
||||
_print_rows(item_fields)
|
||||
_print_rows(library.Item._fields.keys() +
|
||||
library.Item._getters().keys() +
|
||||
library.Item._types.keys())
|
||||
_show_plugin_fields(False)
|
||||
|
||||
print("\nAlbum fields:")
|
||||
album_fields = (library.Album._fields.keys() +
|
||||
library.Album._getters().keys() +
|
||||
library.Album._types.keys())
|
||||
_print_rows(album_fields)
|
||||
_print_rows(library.Album._fields.keys() +
|
||||
library.Album._getters().keys() +
|
||||
library.Album._types.keys())
|
||||
_show_plugin_fields(True)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue