We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3774f3e commit 1034ca5Copy full SHA for 1034ca5
2 files changed
pythonbits/bb.py
@@ -954,7 +954,7 @@ def _render_mediainfo_path(self):
954
assert os.path.isdir(self['path'])
955
956
# get first file over 1 MiB
957
- for dp, dns, fns in os.walk(self['path']):
+ for dp, _, fns in os.walk(self['path']):
958
for fn in fns:
959
g = guess_type(fn)[0]
960
if g and g.startswith('audio'):
pythonbits/musicbrainz.py
@@ -1,11 +1,6 @@
1
# -*- coding: utf-8 -*-
2
-from __future__ import (absolute_import, division,
3
- print_function, unicode_literals)
4
-from builtins import * # noqa: F401, F403
5
-
6
import musicbrainzngs
7
import terminaltables
8
-# from textwrap import wrap
9
10
from . import __title__ as appname, __version__ as version, _github as github
11
0 commit comments