Skip to content

Commit 025a348

Browse files
Fix pylint error
1 parent 850acff commit 025a348

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
@@ -322,7 +322,8 @@ def test_keys_illegal_include_keyword_value(self, setup_path):
322322
with ensure_clean_store(setup_path) as store:
323323
with pytest.raises(
324324
ValueError,
325-
match="`include` should be either 'pandas' or 'native' but is 'illegal'",
325+
match="`include` should be either 'pandas' or 'native'"
326+
" but is 'illegal'",
326327
):
327328
store.keys(include="illegal")
328329

0 commit comments

Comments
 (0)