[Python-checkins] Removed unused import from tzinfo_examples.py. (GH-7994)

Mariatta webhook-mailer at python.org
Thu Jul 5 00:47:40 EDT 2018


https://github.com/python/cpython/commit/3a9bb5f269c8534606eb02d1faa2c882d8cb8530
commit: 3a9bb5f269c8534606eb02d1faa2c882d8cb8530
branch: master
author: Sergey Fedoseev <fedoseev.sergey at gmail.com>
committer: Mariatta <Mariatta at users.noreply.github.com>
date: 2018-07-04T21:47:37-07:00
summary:

Removed unused import from tzinfo_examples.py. (GH-7994)

files:
M Doc/includes/tzinfo_examples.py

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)



More information about the Python-checkins mailing list