Skip to content

Commit

Permalink
PEP8 amendments
Browse files Browse the repository at this point in the history
  • Loading branch information
reiv authored and sampsyo committed Nov 2, 2015
1 parent 629a80a commit 413fe6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions beets/importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -671,8 +671,8 @@ def manipulate_files(self, move=False, copy=False, write=False,
self.old_paths = [item.path for item in items]

# Keep track of paths of all original album art for the same reason.
self.old_art_paths = set(filter(bool,
(album.artpath for album in self.replaced_albums.values())))
self.old_art_paths = set(filter(
bool, (album.artpath for album in self.replaced_albums.values())))

for item in items:
if move or copy or link:
Expand Down

0 comments on commit 413fe6b

Please sign in to comment.