From: Sergey Fedoseev Date: Thu, 5 Jul 2018 04:47:37 +0000 (+0500) Subject: Removed unused import from tzinfo_examples.py. (GH-7994) X-Git-Tag: v3.8.0a1~1441 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3a9bb5f269c8534606eb02d1faa2c882d8cb8530;p=thirdparty%2FPython%2Fcpython.git Removed unused import from tzinfo_examples.py. (GH-7994) --- diff --git a/Doc/includes/tzinfo_examples.py b/Doc/includes/tzinfo_examples.py index ae5a5092665f..9b9e32a553e7 100644 --- a/Doc/includes/tzinfo_examples.py +++ b/Doc/includes/tzinfo_examples.py @@ -1,4 +1,4 @@ -from datetime import tzinfo, timedelta, datetime, timezone +from datetime import tzinfo, timedelta, datetime ZERO = timedelta(0) HOUR = timedelta(hours=1)