Skip to content

Commit c39fc76

Browse files
Fix pylint error
1 parent 69bd5b6 commit c39fc76

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/io/pytables/test_store.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,8 @@ def test_keys_illegal_include_keyword_value(self, setup_path):
367367
with ensure_clean_store(setup_path) as store:
368368
with pytest.raises(
369369
ValueError,
370-
match="`include` should be either 'pandas' or 'native' but is 'illegal'",
370+
match="`include` should be either 'pandas' or 'native'"
371+
" but is 'illegal'",
371372
):
372373
store.keys(include="illegal")
373374

0 commit comments

Comments
 (0)