Skip to content

Commit ab28286

Browse files
rudolfwalterChad Smith
authored and
Chad Smith
committed
Fix Windows ctypes import. (#23)
1 parent 6a028a3 commit ab28286

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pygdbmi/gdbcontroller.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
USING_WINDOWS = os.name == 'nt'
1717
if USING_WINDOWS:
1818
import msvcrt
19-
from ctypes import windll, byref, wintypes, WinError
20-
from ctypes.wintypes import HANDLE, DWORD, POINTER, BOOL
19+
from ctypes import windll, byref, wintypes, WinError, POINTER
20+
from ctypes.wintypes import HANDLE, DWORD, BOOL
2121
else:
2222
import fcntl
2323

0 commit comments

Comments
 (0)