finally silence flake8

This commit is contained in:
Markus Unterwaditzer 2014-12-26 10:04:51 +01:00
parent 37cd8aa88d
commit e450baf0f8

View file

@ -478,4 +478,4 @@ def test_parse_options():
# Yes, we want a very strong typecheck here, because we actually have
# to differentiate between bool and int, and in Python 2, bool is a
# subclass of int.
assert type(a[key]) is type(expected[key]) # NOQA
assert a[key].__class__ is expected[key].__class__