add unused import to timezone test file

This commit is contained in:
Ch3LL 2018-07-27 15:42:35 -04:00
parent 22e424859e
commit de95a6a215
No known key found for this signature in database
GPG key ID: 132B55A7C13EFA73
2 changed files with 2 additions and 2 deletions

View file

@ -10,7 +10,7 @@ import logging
import re
try:
import tzlocal # pylint: disable=unused-import
import tzlocal
HAS_TZLOCAL = True
except ImportError:
HAS_TZLOCAL = False

View file

@ -9,7 +9,7 @@ Linux and Solaris are supported
from __future__ import absolute_import
try:
import tzlocal
import tzlocal # pylint: disable=unused-import
HAS_TZLOCAL = True
except ImportError:
HAS_TZLOCAL = False