diff options
author | Sergey Fedoseev <fedoseev.sergey@gmail.com> | 2018-07-05 04:47:37 (GMT) |
---|---|---|
committer | Mariatta <Mariatta@users.noreply.github.com> | 2018-07-05 04:47:37 (GMT) |
commit | 3a9bb5f269c8534606eb02d1faa2c882d8cb8530 (patch) | |
tree | 50babd967d13551122a6c6f1f9b529847f90a2cb /Doc/includes | |
parent | a6e1e41e0563c87e93085d3a7f7d96e9bbf792d7 (diff) | |
download | cpython-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.py | 2 |
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) |