Skip to content

Commit 8510863

Browse files
committed
Ignore false positive
1 parent 2f779c4 commit 8510863

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/dtypes/test_inference.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,8 @@ def test_is_list_like_generic():
239239
# GH 49649
240240
# is_list_like was yielding false positives for Generic classes in python 3.11
241241
T = TypeVar("T")
242-
242+
# https://github.com/pylint-dev/pylint/issues/9398
243+
# pylint: disable=multiple-statements
243244
class MyDataFrame(DataFrame, Generic[T]): ...
244245

245246
tstc = MyDataFrame[int]

0 commit comments

Comments
 (0)