summaryrefslogtreecommitdiffstats
path: root/Doc/includes
diff options
context:
space:
mode:
authorSergey Fedoseev <fedoseev.sergey@gmail.com>2018-07-05 04:47:37 (GMT)
committerMariatta <Mariatta@users.noreply.github.com>2018-07-05 04:47:37 (GMT)
commit3a9bb5f269c8534606eb02d1faa2c882d8cb8530 (patch)
tree50babd967d13551122a6c6f1f9b529847f90a2cb /Doc/includes
parenta6e1e41e0563c87e93085d3a7f7d96e9bbf792d7 (diff)
downloadcpython-3a9bb5f269c8534606eb02d1faa2c882d8cb8530.zip
cpython-3a9bb5f269c8534606eb02d1faa2c882d8cb8530.tar.gz
cpython-3a9bb5f269c8534606eb02d1faa2c882d8cb8530.tar.bz2
Removed unused import from tzinfo_examples.py. (GH-7994)
Diffstat (limited to 'Doc/includes')
-rw-r--r--Doc/includes/tzinfo_examples.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/includes/tzinfo_examples.py b/Doc/includes/tzinfo_examples.py
index ae5a509..9b9e32a 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)