@@ -125,9 +125,7 @@ def is_path_query(cls, query_part):
125
125
126
126
# Test both `sep` and `altsep` (i.e., both slash and backslash on
127
127
# Windows).
128
- if not (
129
- os .sep in query_part or (os .altsep and os .altsep in query_part )
130
- ):
128
+ if not (os .sep in query_part or (os .altsep and os .altsep in query_part )):
131
129
return False
132
130
133
131
if cls .force_implicit_query_detection :
@@ -450,10 +448,7 @@ def album_keys(self):
450
448
if self .included_keys == self .ALL_KEYS :
451
449
# Performance note: this triggers a database query.
452
450
for key in self .album .keys (computed = True ):
453
- if (
454
- key in Album .item_keys
455
- or key not in self .item ._fields .keys ()
456
- ):
451
+ if key in Album .item_keys or key not in self .item ._fields .keys ():
457
452
album_keys .append (key )
458
453
else :
459
454
album_keys = self .included_keys
@@ -531,6 +526,7 @@ class Item(LibModel):
531
526
"albumartist_credit" : types .STRING ,
532
527
"albumartists_credit" : types .MULTI_VALUE_DSV ,
533
528
"genre" : types .STRING ,
529
+ "genres" : types .MULTI_VALUE_DSV ,
534
530
"style" : types .STRING ,
535
531
"discogs_albumid" : types .INTEGER ,
536
532
"discogs_artistid" : types .INTEGER ,
@@ -622,9 +618,7 @@ class Item(LibModel):
622
618
# Any kind of field (fixed, flexible, and computed) may be a media
623
619
# field. Only these fields are read from disk in `read` and written in
624
620
# `write`.
625
- _media_fields = set (MediaFile .readable_fields ()).intersection (
626
- _fields .keys ()
627
- )
621
+ _media_fields = set (MediaFile .readable_fields ()).intersection (_fields .keys ())
628
622
629
623
# Set of item fields that are backed by *writable* `MediaFile` tag
630
624
# fields.
@@ -736,8 +730,7 @@ def __repr__(self):
736
730
return "{}({})" .format (
737
731
type (self ).__name__ ,
738
732
", " .join (
739
- "{}={!r}" .format (k , self [k ])
740
- for k in self .keys (with_album = False )
733
+ "{}={!r}" .format (k , self [k ]) for k in self .keys (with_album = False )
741
734
),
742
735
)
743
736
@@ -931,19 +924,13 @@ def move_file(self, dest, operation=MoveOperation.MOVE):
931
924
destination = dest ,
932
925
)
933
926
util .move (self .path , dest )
934
- plugins .send (
935
- "item_moved" , item = self , source = self .path , destination = dest
936
- )
927
+ plugins .send ("item_moved" , item = self , source = self .path , destination = dest )
937
928
elif operation == MoveOperation .COPY :
938
929
util .copy (self .path , dest )
939
- plugins .send (
940
- "item_copied" , item = self , source = self .path , destination = dest
941
- )
930
+ plugins .send ("item_copied" , item = self , source = self .path , destination = dest )
942
931
elif operation == MoveOperation .LINK :
943
932
util .link (self .path , dest )
944
- plugins .send (
945
- "item_linked" , item = self , source = self .path , destination = dest
946
- )
933
+ plugins .send ("item_linked" , item = self , source = self .path , destination = dest )
947
934
elif operation == MoveOperation .HARDLINK :
948
935
util .hardlink (self .path , dest )
949
936
plugins .send (
@@ -1173,6 +1160,7 @@ class Album(LibModel):
1173
1160
"albumartists_credit" : types .MULTI_VALUE_DSV ,
1174
1161
"album" : types .STRING ,
1175
1162
"genre" : types .STRING ,
1163
+ "genres" : types .MULTI_VALUE_DSV ,
1176
1164
"style" : types .STRING ,
1177
1165
"discogs_albumid" : types .INTEGER ,
1178
1166
"discogs_artistid" : types .INTEGER ,
@@ -1229,6 +1217,7 @@ class Album(LibModel):
1229
1217
"albumartists_credit" ,
1230
1218
"album" ,
1231
1219
"genre" ,
1220
+ "genres" ,
1232
1221
"style" ,
1233
1222
"discogs_albumid" ,
1234
1223
"discogs_artistid" ,
@@ -1451,9 +1440,7 @@ def art_destination(self, image, item_dir=None):
1451
1440
subpath = util .asciify_path (
1452
1441
subpath , beets .config ["path_sep_replace" ].as_str ()
1453
1442
)
1454
- subpath = util .sanitize_path (
1455
- subpath , replacements = self ._db .replacements
1456
- )
1443
+ subpath = util .sanitize_path (subpath , replacements = self ._db .replacements )
1457
1444
subpath = bytestring_path (subpath )
1458
1445
1459
1446
_ , ext = os .path .splitext (image )
@@ -1681,16 +1668,12 @@ def _fetch(self, model_cls, query, sort=None):
1681
1668
@staticmethod
1682
1669
def get_default_album_sort ():
1683
1670
"""Get a :class:`Sort` object for albums from the config option."""
1684
- return dbcore .sort_from_strings (
1685
- Album , beets .config ["sort_album" ].as_str_seq ()
1686
- )
1671
+ return dbcore .sort_from_strings (Album , beets .config ["sort_album" ].as_str_seq ())
1687
1672
1688
1673
@staticmethod
1689
1674
def get_default_item_sort ():
1690
1675
"""Get a :class:`Sort` object for items from the config option."""
1691
- return dbcore .sort_from_strings (
1692
- Item , beets .config ["sort_item" ].as_str_seq ()
1693
- )
1676
+ return dbcore .sort_from_strings (Item , beets .config ["sort_item" ].as_str_seq ())
1694
1677
1695
1678
def albums (self , query = None , sort = None ) -> Results [Album ]:
1696
1679
"""Get :class:`Album` objects matching the query."""
0 commit comments