Skip to content

Commit

Permalink
GH1065 Realign Timestamp args with pandas
Browse files Browse the repository at this point in the history
  • Loading branch information
loicdiridollou committed Dec 1, 2024
1 parent 8bd0ac6 commit 9b24c32
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pandas-stubs/_libs/tslibs/timestamps.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -59,18 +59,18 @@ class Timestamp(datetime):
def __new__(
cls,
ts_input: np.integer | float | str | _date | datetime | np.datetime64 = ...,
tz: str | _tzinfo | int | None = ...,
unit: str | int | None = ...,
year: int | None = ...,
month: int | None = ...,
day: int | None = ...,
hour: int | None = ...,
minute: int | None = ...,
second: int | None = ...,
microsecond: int | None = ...,
tzinfo: _tzinfo | None = ...,
*,
nanosecond: int | None = ...,
tzinfo: _tzinfo | None = ...,
tz: str | _tzinfo | int | None = ...,
unit: str | int | None = ...,
fold: Literal[0, 1] | None = ...,
) -> Self: ...
# GH 46171
Expand Down

0 comments on commit 9b24c32

Please sign in to comment.