Fixed E201 flake8 errors

whitespace after ‘(‘
This commit is contained in:
Andras Tim
2017-07-17 01:25:08 +02:00
parent df54bf0db5
commit 1ff54ba205
5 changed files with 6 additions and 6 deletions

View File

@@ -243,7 +243,7 @@ class TestApprox(object):
def test_complex(self):
within_1e6 = [
( 1.000001 + 1.0j, 1.0 + 1.0j),
(1.000001 + 1.0j, 1.0 + 1.0j),
(1.0 + 1.000001j, 1.0 + 1.0j),
(-1.000001 + 1.0j, -1.0 + 1.0j),
(1.0 - 1.000001j, 1.0 - 1.0j),

View File

@@ -141,7 +141,7 @@ class TestMetafunc(object):
@pytest.mark.issue510
def test_parametrize_empty_list(self):
def func( y): pass
def func(y): pass
metafunc = self.Metafunc(func)
metafunc.parametrize("y", [])
assert 'skip' in metafunc._calls[0].keywords