Skip to content

Commit 7abe6f6

Browse files
committed
LINT: fix quotes
1 parent d98ab24 commit 7abe6f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/io/pytables/test_store.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4924,7 +4924,7 @@ def test_unsuppored_hdf_file_error(self, datapath):
49244924
pd.read_hdf(data_path)
49254925

49264926

4927-
@pytest.mark.parametrize("bad_version", [(1, 2), (1,), [], '12', '123'])
4927+
@pytest.mark.parametrize("bad_version", [(1, 2), (1,), [], "12", "123"])
49284928
def test_maybe_adjust_name_bad_version_raises(bad_version):
49294929
msg = "Version is incorrect, expected sequence of 3 integers"
49304930
with pytest.raises(ValueError, match=msg):

0 commit comments

Comments
 (0)