From e01ff3b35261e52f50b1d84de8ec9e2790427a8f Mon Sep 17 00:00:00 2001 From: Robin Roth Date: Mon, 11 Jan 2016 14:14:20 +0100 Subject: [PATCH] remove unused imports clean up imports of time.sleep and stat that are no (longer) used here --- lib/ansible/utils/path.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/ansible/utils/path.py b/lib/ansible/utils/path.py index ffac578243d..d8dc4234265 100644 --- a/lib/ansible/utils/path.py +++ b/lib/ansible/utils/path.py @@ -18,8 +18,6 @@ from __future__ import (absolute_import, division, print_function) __metaclass__ = type import os -import stat -from time import sleep from errno import EEXIST __all__ = ['unfrackpath']