Fixed linting errors

This commit is contained in:
ymdatta 2019-01-04 10:32:06 +05:30
parent 3b16130500
commit cc20e35058

View file

@ -25,7 +25,7 @@ def test_to_optparse():
@pytest.mark.parametrize('opttype,str_val,expected', [
('float', '2', 2.0),
('complex', '2', (2+0j)),
('complex', '2', (2 + 0j)),
])
def test_to_support_optparses_standard_types(opttype, str_val, expected):
"""Show that optparse converts float and complex types correctly."""