Skip to content

Commit 5d1edeb

Browse files
committed
CLN: Make test_compat.py flake8-able
1 parent f9079ff commit 5d1edeb

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

pandas/tests/computation/test_compat.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
2-
# flake8: noqa
3-
41
import pytest
5-
from itertools import product
62
from distutils.version import LooseVersion
73

84
import pandas as pd
@@ -32,7 +28,7 @@ def test_compat():
3228
@pytest.mark.parametrize('parser', expr._parsers)
3329
def test_invalid_numexpr_version(engine, parser):
3430
def testit():
35-
a, b = 1, 2
31+
a, b = 1, 2 # noqa
3632
res = pd.eval('a + b', engine=engine, parser=parser)
3733
tm.assert_equal(res, 3)
3834

0 commit comments

Comments
 (0)