Skip to content

Commit 2e78fd9

Browse files
jbrockmendelproost
authored andcommitted
CLN: follow-up to 29725 (pandas-dev#29890)
1 parent a1df664 commit 2e78fd9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pandas/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -878,6 +878,6 @@ def index_or_series(request):
878878
879879
List item 0 has incompatible type "Type[Series]"; expected "Type[PandasObject]"
880880
881-
See GH#?????
881+
See GH#29725
882882
"""
883883
return request.param

pandas/tests/arithmetic/test_numeric.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def adjust_negative_zero(zero, expected):
3333

3434
# TODO: remove this kludge once mypy stops giving false positives here
3535
# List comprehension has incompatible type List[PandasObject]; expected List[RangeIndex]
36-
# See GH#?????
36+
# See GH#29725
3737
ser_or_index: List[Any] = [pd.Series, pd.Index]
3838
lefts: List[Any] = [pd.RangeIndex(10, 40, 10)]
3939
lefts.extend(

pandas/tests/test_strings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,7 @@ def test_str_cat_align_mixed_inputs(self, join):
666666

667667
index_or_series2 = [Series, Index] # type: ignore
668668
# List item 0 has incompatible type "Type[Series]"; expected "Type[PandasObject]"
669-
# See GH#>????
669+
# See GH#29725
670670

671671
@pytest.mark.parametrize("other", index_or_series2)
672672
def test_str_cat_all_na(self, index_or_series, other):

0 commit comments

Comments
 (0)