From b778104a42e98af598ec89876af4964d8499bf97 Mon Sep 17 00:00:00 2001 From: BLUELOVETH Date: Mon, 29 May 2023 16:39:24 +0800 Subject: [PATCH] Update datetime.md --- docs/modules/datetime.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/modules/datetime.md b/docs/modules/datetime.md index 059bc387..58327892 100644 --- a/docs/modules/datetime.md +++ b/docs/modules/datetime.md @@ -78,4 +78,7 @@ class timedelta: def __le__(self, other: 'timedelta') -> bool: ... def __gt__(self, other: 'timedelta') -> bool: ... def __ge__(self, other: 'timedelta') -> bool: ... + +class timezone: + def __init__(self, delta: timedelta): ... ``` \ No newline at end of file