Skip to content

Commit

Permalink
flake8 fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
udiboy1209 committed Nov 5, 2017
1 parent 83f2e44 commit a6215f3
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 @@ -358,7 +358,7 @@ def already_merged(self, paths):
"""
for path in paths:
if path not in self._merged_items \
and path not in self._merged_dirs:
and path not in self._merged_dirs:
return False
return True

Expand All @@ -367,7 +367,7 @@ def mark_merged(self, paths):
"""
self._merged_items.update(paths)
dirs = set([os.path.dirname(path) if os.path.isfile(path) else path
for path in paths])
for path in paths])
self._merged_dirs.update(dirs)

def is_resuming(self, toppath):
Expand Down

0 comments on commit a6215f3

Please sign in to comment.