Skip to content

Commit 58e99f1

Browse files
committed
pyrefly
1 parent 8c92512 commit 58e99f1

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

pandas-stubs/_libs/missing.pyi

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,15 +105,19 @@ class NAType:
105105
@overload
106106
def __rdivmod__(self, other: Scalar, /) -> tuple[NAType, NAType]: ...
107107
@overload # type: ignore[override]
108-
def __eq__(self, other: Series, /) -> Series[bool]: ...
108+
def __eq__( # pyrefly: ignore[bad-override]
109+
self, other: Series, /
110+
) -> Series[bool]: ...
109111
@overload
110112
def __eq__(self, other: Index, /) -> BooleanArray: ...
111113
@overload
112114
def __eq__( # pyright: ignore[reportIncompatibleMethodOverride]
113115
self, other: Scalar, /
114116
) -> NAType: ...
115117
@overload # type: ignore[override]
116-
def __ne__(self, other: Series, /) -> Series[bool]: ...
118+
def __ne__( # pyrefly: ignore[bad-override]
119+
self, other: Series, /
120+
) -> Series[bool]: ...
117121
@overload
118122
def __ne__(self, other: Index, /) -> BooleanArray: ...
119123
@overload

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ pyarrow = ">=10.0.1"
4343
pytest = ">=8.4.2"
4444
pyright = ">=1.1.407"
4545
ty = ">=0.0.1a25"
46-
pyrefly = ">=0.38.2"
46+
pyrefly = ">=0.39.4"
4747
poethepoet = ">=0.16.5"
4848
loguru = ">=0.6.0"
4949
typing-extensions = ">=4.4.0"

0 commit comments

Comments
 (0)