Skip to content

Commit 5e55ed0

Browse files
authored
Disable line-too-long error
I don't really like linters...
1 parent b2fa282 commit 5e55ed0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

msal_extensions/windows.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
_GET_LAST_ERROR = ctypes.windll.kernel32.GetLastError
77
_MEMCPY = ctypes.cdll.msvcrt.memcpy
88
_MEMCPY.argtypes = [ctypes.c_void_p, ctypes.c_void_p, ctypes.c_size_t] # Note:
9-
# Suggested by https://github.com/AzureAD/microsoft-authentication-extensions-for-python/issues/85
10-
# Matching https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/memcpy-wmemcpy?view=msvc-160
9+
# Suggested by https://github.com/AzureAD/microsoft-authentication-extensions-for-python/issues/85 # pylint: disable=line-too-long
10+
# Matching https://docs.microsoft.com/en-us/cpp/c-runtime-library/reference/memcpy-wmemcpy?view=msvc-160 # pylint: disable=line-too-long
1111
_CRYPT_PROTECT_DATA = ctypes.windll.crypt32.CryptProtectData
1212
_CRYPT_UNPROTECT_DATA = ctypes.windll.crypt32.CryptUnprotectData
1313
_CRYPTPROTECT_UI_FORBIDDEN = 0x01

0 commit comments

Comments
 (0)