Skip to content

Commit 7b1cd8d

Browse files
committed
Fix linting issues
1 parent e3cb9c1 commit 7b1cd8d

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

pandas/conftest.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@ def pytest_runtest_setup(item):
2626
if 'network' in item.keywords and item.config.getoption("--skip-network"):
2727
pytest.skip("skipping due to --skip-network")
2828

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

3234

3335
# Configurations for all tests and all test modules

pandas/tests/io/parser/test_parsers.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ def test_bytes_exceed_2gb():
3333
3434
GH 16798
3535
"""
36-
csv = StringIO('strings\n' + '\n'.join(['x' * (1 << 20) for _ in range(2100)]))
36+
csv = StringIO('strings\n' + '\n'.join(
37+
['x' * (1 << 20) for _ in range(2100)]))
3738
df = read_csv(csv, low_memory=False)
3839
assert not df.empty
3940

0 commit comments

Comments
 (0)