You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""An `pydantic-core` implementation of the abstract [`datetime.tzinfo`][] class."""
995
995
996
-
# def __new__(cls, seconds: float) -> Self: ...
996
+
def__init__(self, seconds: float=0.0) ->None:
997
+
"""Initializes the `TzInfo`.
998
+
999
+
Arguments:
1000
+
seconds: The offset from UTC in seconds. Defaults to 0.0 (UTC).
1001
+
"""
1002
+
1003
+
def__new__(cls, seconds: float=0.0) ->Self: ...
997
1004
998
1005
# Docstrings for attributes sourced from the abstract base class, [`datetime.tzinfo`](https://docs.python.org/3/library/datetime.html#datetime.tzinfo).
0 commit comments