Skip to content

Commit c32086e

Browse files
committed
LINT: fix quotes
1 parent d98ab24 commit c32086e

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
@@ -45,11 +45,11 @@
4545
)
4646

4747
from pandas.io.pytables import (
48-
_maybe_adjust_name,
4948
ClosedFileError,
5049
HDFStore,
5150
PossibleDataLossError,
5251
Term,
52+
_maybe_adjust_name,
5353
read_hdf,
5454
)
5555

@@ -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)