From 6f85d6b9af4d0bebd8d2852bc77af8a233faac2d Mon Sep 17 00:00:00 2001 From: twangboy Date: Tue, 4 Aug 2015 17:13:47 -0600 Subject: [PATCH] Fixed some lint --- tests/unit/modules/win_system_test.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/unit/modules/win_system_test.py b/tests/unit/modules/win_system_test.py index 7633b936fe..9f81156cff 100644 --- a/tests/unit/modules/win_system_test.py +++ b/tests/unit/modules/win_system_test.py @@ -23,10 +23,10 @@ from salt.modules import win_system # Import 3rd Party Libs try: - import win32net - import win32api - import pywintypes - from ctypes import windll + import win32net # pylint: disable=E0611 + import win32api # pylint: disable=E0611 + import pywintypes # pylint: disable=E0611 + from ctypes import windll # pylint: disable=E0611 HAS_WIN32NET_MODS = True except ImportError: HAS_WIN32NET_MODS = False