Skip to content

Commit

Permalink
LINT: fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanovmg committed Oct 5, 2020
1 parent d98ab24 commit c32086e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pandas/tests/io/pytables/test_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@
)

from pandas.io.pytables import (
_maybe_adjust_name,
ClosedFileError,
HDFStore,
PossibleDataLossError,
Term,
_maybe_adjust_name,
read_hdf,
)

Expand Down Expand Up @@ -4924,7 +4924,7 @@ def test_unsuppored_hdf_file_error(self, datapath):
pd.read_hdf(data_path)


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

0 comments on commit c32086e

Please sign in to comment.