Skip to content

Commit

Permalink
CLN: follow-up to 29725 (pandas-dev#29890)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrockmendel authored and proost committed Dec 19, 2019
1 parent 9a64d35 commit 758a0a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pandas/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -878,6 +878,6 @@ def index_or_series(request):
List item 0 has incompatible type "Type[Series]"; expected "Type[PandasObject]"
See GH#?????
See GH#29725
"""
return request.param
2 changes: 1 addition & 1 deletion pandas/tests/arithmetic/test_numeric.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def adjust_negative_zero(zero, expected):

# TODO: remove this kludge once mypy stops giving false positives here
# List comprehension has incompatible type List[PandasObject]; expected List[RangeIndex]
# See GH#?????
# See GH#29725
ser_or_index: List[Any] = [pd.Series, pd.Index]
lefts: List[Any] = [pd.RangeIndex(10, 40, 10)]
lefts.extend(
Expand Down
2 changes: 1 addition & 1 deletion pandas/tests/test_strings.py
Original file line number Diff line number Diff line change
Expand Up @@ -666,7 +666,7 @@ def test_str_cat_align_mixed_inputs(self, join):

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

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

0 comments on commit 758a0a3

Please sign in to comment.