summaryrefslogtreecommitdiff
path: root/src/isodate/isotime.py
diff options
context:
space:
mode:
authorLaurent Mazuel <laurent.mazuel@gmail.com>2017-06-28 18:34:56 -0700
committerLaurent Mazuel <laurent.mazuel@gmail.com>2017-06-28 18:40:41 -0700
commit0f2a41a33dbc4624f265dfdf62ef9ba68e8e9605 (patch)
tree921877b340544869691a521c20a8e7e8f57be384 /src/isodate/isotime.py
parentad4e50bd7cdb697606148d434e803fdf7f647f8d (diff)
downloadisodate-0f2a41a33dbc4624f265dfdf62ef9ba68e8e9605.tar.gz
Flake happiness
Diffstat (limited to 'src/isodate/isotime.py')
-rw-r--r--src/isodate/isotime.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/isodate/isotime.py b/src/isodate/isotime.py
index c6d9391..a430982 100644
--- a/src/isodate/isotime.py
+++ b/src/isodate/isotime.py
@@ -36,13 +36,13 @@ import sys
from decimal import Decimal
from datetime import time
-if sys.version_info > (3,):
- long = int
-
from isodate.isostrf import strftime, TIME_EXT_COMPLETE, TZ_EXT
from isodate.isoerror import ISO8601Error
from isodate.isotzinfo import TZ_REGEX, build_tzinfo
+if sys.version_info > (3,):
+ long = int
+
TIME_REGEX_CACHE = []
# used to cache regular expressions to parse ISO time strings.