Skip to content

Commit

Permalink
Add noqa to DWORD import in __init__.py
Browse files Browse the repository at this point in the history
Linter check disabled on import statement,
no direct use of import in module but tests depend
on DWORD import in __init__.py
  • Loading branch information
fmtabler committed Dec 9, 2024
1 parent 5e7c842 commit 3005c61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comtypes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from ctypes import HRESULT # noqa
from ctypes import _Pointer, _SimpleCData # noqa
from ctypes import c_int, c_ulong, oledll, windll
from ctypes.wintypes import DWORD
from ctypes.wintypes import DWORD #noqa
import logging
import sys
from typing import TYPE_CHECKING
Expand Down

0 comments on commit 3005c61

Please sign in to comment.