Skip to content

CLN: Remove "flake8: noqa" from files #15842

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions pandas/tests/computation/test_compat.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@

# flake8: noqa

import pytest
from itertools import product
from distutils.version import LooseVersion

import pandas as pd
Expand Down Expand Up @@ -32,7 +28,7 @@ def test_compat():
@pytest.mark.parametrize('parser', expr._parsers)
def test_invalid_numexpr_version(engine, parser):
def testit():
a, b = 1, 2
a, b = 1, 2 # noqa
res = pd.eval('a + b', engine=engine, parser=parser)
tm.assert_equal(res, 3)

Expand Down
Loading