anarsec.guide/layout/python/toml/tz.pyi
2023-07-09 20:53:03 +00:00

9 lines
276 B
Python

from datetime import tzinfo
from typing import Any
class TomlTz(tzinfo):
def __init__(self, toml_offset: Any) -> None: ...
def __deepcopy__(self, memo: Any): ...
def tzname(self, dt: Any): ...
def utcoffset(self, dt: Any): ...
def dst(self, dt: Any): ...