Skip to content

Commit 4380c53

Browse files
committed
Fix linting issues
1 parent 7b1cd8d commit 4380c53

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pandas/conftest.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ def pytest_runtest_setup(item):
2828

2929
if 'high_memory' in item.keywords and not item.config.getoption(
3030
"--run-highmemory"):
31-
pytest.skip(
32-
"skipping high memory test since --run-highmemory was not set")
31+
pytest.skip(
32+
"skipping high memory test since --run-highmemory was not set")
3333

3434

3535
# Configurations for all tests and all test modules

pandas/tests/io/parser/test_parsers.py

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
from .python_parser_only import PythonParserTests
2828
from .dtypes import DtypeTests
2929

30+
3031
@pytest.mark.high_memory
3132
def test_bytes_exceed_2gb():
3233
"""Read from a "CSV" that has a column larger than 2GB.

0 commit comments

Comments
 (0)