diff options
author | Sergey Fedoseev <fedoseev.sergey@gmail.com> | 2018-07-05 09:47:37 +0500 |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2018-07-04 21:47:37 -0700 |
commit | 3a9bb5f269c8534606eb02d1faa2c882d8cb8530 (patch) | |
tree | 50babd967d13551122a6c6f1f9b529847f90a2cb /Doc/includes/tzinfo_examples.py | |
parent | a6e1e41e0563c87e93085d3a7f7d96e9bbf792d7 (diff) | |
download | cpython-git-3a9bb5f269c8534606eb02d1faa2c882d8cb8530.tar.gz |
Removed unused import from tzinfo_examples.py. (GH-7994)
Diffstat (limited to 'Doc/includes/tzinfo_examples.py')
-rw-r--r-- | Doc/includes/tzinfo_examples.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |