Skip to content

Commit dcf9ddb

Browse files
committed
use strict typing for tslibs/nattype and tslibs/dtypes
1 parent a6ebdaf commit dcf9ddb

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

pandas-stubs/_libs/tslibs/dtypes.pyi

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ from .offsets import BaseOffset
55

66
class PeriodDtypeBase:
77
def __init__(self, code: int) -> None: ...
8-
def __eq__(self, other) -> bool: ...
8+
def __eq__(self, other: object) -> bool: ...
99
@property
1010
def date_offset(self) -> BaseOffset: ...
1111
@classmethod

pandas-stubs/_libs/tslibs/nattype.pyi

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# pyright: strict
12
from datetime import (
23
datetime,
34
timedelta,
@@ -11,7 +12,10 @@ from typing_extensions import (
1112
)
1213

1314
from pandas._libs.tslibs.period import Period
14-
from pandas._typing import TimeUnit
15+
from pandas._typing import (
16+
NpDtype,
17+
TimeUnit,
18+
)
1519

1620
NaT: NaTType
1721
iNaT: int
@@ -30,7 +34,7 @@ class NaTType:
3034
def asm8(self) -> np.datetime64: ...
3135
def to_datetime64(self) -> np.datetime64: ...
3236
def to_numpy(
33-
self, dtype: np.dtype | str | None = ..., copy: bool = ...
37+
self, dtype: NpDtype | None = ..., copy: bool = ...
3438
) -> np.datetime64 | np.timedelta64: ...
3539
@property
3640
def is_leap_year(self) -> bool: ...
@@ -67,8 +71,8 @@ class NaTType:
6771
def weekday(self) -> float: ...
6872
def isoweekday(self) -> float: ...
6973
def total_seconds(self) -> float: ...
70-
def today(self, *args, **kwargs) -> NaTType: ...
71-
def now(self, *args, **kwargs) -> NaTType: ...
74+
def today(self, tz: _tzinfo | str | None = ...) -> NaTType: ...
75+
def now(self, tz: _tzinfo | str | None = ...) -> NaTType: ...
7276
def to_pydatetime(self) -> NaTType: ...
7377
def date(self) -> NaTType: ...
7478
def round(self) -> NaTType: ...

0 commit comments

Comments
 (0)