Skip to content

Commit 83bce97

Browse files
Linting: Fix space at the start at the string
1 parent 5074524 commit 83bce97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/io/pytables/test_store.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -325,8 +325,8 @@ def test_keys_illegal_include_keyword_value(self, setup_path):
325325
with ensure_clean_store(setup_path) as store:
326326
with pytest.raises(
327327
ValueError,
328-
match="`include` should be either 'pandas' or 'native'"
329-
" but is 'illegal'",
328+
match="`include` should be either 'pandas' or 'native' "
329+
"but is 'illegal'",
330330
):
331331
store.keys(include="illegal")
332332

0 commit comments

Comments
 (0)