From 4881360d1f12b1aaf8d6b5212052fbe751fe68a8 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Wed, 4 Jul 2018 22:08:26 -0700 Subject: [PATCH] Removed unused import from tzinfo_examples.py. (GH-7994) (cherry picked from commit 3a9bb5f269c8534606eb02d1faa2c882d8cb8530) Co-authored-by: Sergey Fedoseev --- Doc/includes/tzinfo_examples.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/includes/tzinfo_examples.py b/Doc/includes/tzinfo_examples.py index ae5a509266..9b9e32a553 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) -- 2.50.1