Skip to content

Commit 8969623

Browse files
Linting: Fix space at the start at the string
1 parent 4ef7b87 commit 8969623

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
@@ -370,8 +370,8 @@ def test_keys_illegal_include_keyword_value(self, setup_path):
370370
with ensure_clean_store(setup_path) as store:
371371
with pytest.raises(
372372
ValueError,
373-
match="`include` should be either 'pandas' or 'native'"
374-
" but is 'illegal'",
373+
match="`include` should be either 'pandas' or 'native' "
374+
"but is 'illegal'",
375375
):
376376
store.keys(include="illegal")
377377

0 commit comments

Comments
 (0)