mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fixed the lint... again
This commit is contained in:
parent
6f85d6b9af
commit
0502897635
1 changed files with 4 additions and 4 deletions
|
@ -23,10 +23,10 @@ from salt.modules import win_system
|
|||
|
||||
# Import 3rd Party Libs
|
||||
try:
|
||||
import win32net # pylint: disable=E0611
|
||||
import win32api # pylint: disable=E0611
|
||||
import pywintypes # pylint: disable=E0611
|
||||
from ctypes import windll # pylint: disable=E0611
|
||||
import win32net # pylint: disable=W0611
|
||||
import win32api # pylint: disable=W0611
|
||||
import pywintypes # pylint: disable=W0611
|
||||
from ctypes import windll # pylint: disable=W0611
|
||||
HAS_WIN32NET_MODS = True
|
||||
except ImportError:
|
||||
HAS_WIN32NET_MODS = False
|
||||
|
|
Loading…
Add table
Reference in a new issue