Skip to content

Commit 3796f3f

Browse files
committed
Fix flake8 errors
1 parent e434452 commit 3796f3f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

win32ctypes/pywin32/win32api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from win32ctypes.core import (
1010
_common, _dll, _resource, _system_information, _backend, _time)
1111
from .pywintypes import pywin32error as _pywin32error
12-
from ._constants import LOAD_LIBRARY_AS_DATAFILE, LANG_NEUTRAL
12+
from ._constants import LOAD_LIBRARY_AS_DATAFILE, LANG_NEUTRAL # noqa
1313

1414

1515
def LoadLibraryEx(fileName, handle, flags):

win32ctypes/pywin32/win32cred.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
from .pywintypes import pywin32error as _pywin32error
1111

1212
# Bring constants into namespace
13-
from win32ctypes.constants import (
13+
from win32ctypes.constants import ( # noqa
1414
CRED_TYPE_GENERIC,
1515
CRED_PERSIST_SESSION,
1616
CRED_PERSIST_LOCAL_MACHINE,
1717
CRED_PERSIST_ENTERPRISE,
1818
CRED_ENUMERATE_ALL_CREDENTIALS,
19-
CRED_PERSIST_ENTERPRISE) # noqa
19+
CRED_PERSIST_ENTERPRISE)
2020

2121

2222
def CredWrite(Credential, Flags=0):

0 commit comments

Comments
 (0)