diff options
author | Naveen Joy <najoy@cisco.com> | 2019-02-28 08:46:41 -0800 |
---|---|---|
committer | Naveen Joy <najoy@cisco.com> | 2019-02-28 08:46:41 -0800 |
commit | 05e18829d98015b9022f01e207bac3aa3cf66ea6 (patch) | |
tree | 7ad288c0718da30bccf06e59264f23f0f528ef09 | |
parent | 703908aaf4f80ef6bc78166d46eba3a3b3aa15f7 (diff) |
Remove unused imports from hooks
Change-Id: I087b057da526c18f8cce1902dcb594dd5ce0a4b8
Signed-off-by: Naveen Joy <najoy@cisco.com>
-rw-r--r-- | test/hook.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/hook.py b/test/hook.py index d23604ba13f..187e13e4ab7 100644 --- a/test/hook.py +++ b/test/hook.py @@ -6,10 +6,6 @@ from log import RED, single_line_delim, double_line_delim import ipaddress from subprocess import check_output, CalledProcessError from util import check_core_path, get_core_path -try: - text_type = unicode -except NameError: - text_type = str class Hook(object): |