flake8 fix for #2379

This commit is contained in:
Adrian Sampson 2017-01-10 13:24:33 -05:00
parent f137f87878
commit f7ebf5524f

View file

@ -909,8 +909,10 @@ class AIFFTest(ReadWriteTestBase, unittest.TestCase):
}
# Check whether we have a Mutagen version with DSF support. We can
# remove this once we require a version that includes the feature.
try:
import mutagen.dsf
import mutagen.dsf # noqa
except:
HAVE_DSF = False
else: