Skip to content

Commit 1034ca5

Browse files
committed
fix style
1 parent 3774f3e commit 1034ca5

2 files changed

Lines changed: 1 addition & 6 deletions

File tree

pythonbits/bb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -954,7 +954,7 @@ def _render_mediainfo_path(self):
954954
assert os.path.isdir(self['path'])
955955

956956
# get first file over 1 MiB
957-
for dp, dns, fns in os.walk(self['path']):
957+
for dp, _, fns in os.walk(self['path']):
958958
for fn in fns:
959959
g = guess_type(fn)[0]
960960
if g and g.startswith('audio'):

pythonbits/musicbrainz.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
# -*- coding: utf-8 -*-
2-
from __future__ import (absolute_import, division,
3-
print_function, unicode_literals)
4-
from builtins import * # noqa: F401, F403
5-
62
import musicbrainzngs
73
import terminaltables
8-
# from textwrap import wrap
94

105
from . import __title__ as appname, __version__ as version, _github as github
116

0 commit comments

Comments
 (0)