Skip to content

Commit 2ec62ea

Browse files
GH1149 run pre-commit
1 parent 5ce43b2 commit 2ec62ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_series.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3979,7 +3979,7 @@ def test_timedelta_index_cumprod() -> None:
39793979

39803980
def test_series_str_upper() -> None:
39813981
"""Test the returns of StringMethods match the type of the input series GH1149."""
3982-
s_str = pd.Series(['a', 'b'])
3982+
s_str = pd.Series(["a", "b"])
39833983
check(assert_type(s_str, "pd.Series[str]"), pd.Series, str)
39843984
check(assert_type(s_str.str.upper(), "pd.Series[str]"), pd.Series, str)
39853985
check(assert_type(s_str.str.lower(), "pd.Series[str]"), pd.Series, str)

0 commit comments

Comments
 (0)