We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3028a43 + e1c4e42 commit d07c661Copy full SHA for d07c661
1 file changed
progressbar/terminal/os_specific/windows.py
@@ -54,7 +54,7 @@ class _COORD(ctypes.Structure):
54
55
56
class _FOCUS_EVENT_RECORD(ctypes.Structure):
57
- _fields_ = ('bSetFocus', _BOOL)
+ _fields_ = (('bSetFocus', _BOOL), )
58
59
60
class _KEY_EVENT_RECORD(ctypes.Structure):
@@ -72,7 +72,7 @@ class _uchar(ctypes.Union):
72
73
74
class _MENU_EVENT_RECORD(ctypes.Structure):
75
- _fields_ = ('dwCommandId', _UINT)
+ _fields_ = (('dwCommandId', _UINT), )
76
77
78
class _MOUSE_EVENT_RECORD(ctypes.Structure):
@@ -85,7 +85,7 @@ class _MOUSE_EVENT_RECORD(ctypes.Structure):
85
86
87
class _WINDOW_BUFFER_SIZE_RECORD(ctypes.Structure):
88
- _fields_ = ('dwSize', _COORD)
+ _fields_ = (('dwSize', _COORD), )
89
90
91
class _INPUT_RECORD(ctypes.Structure):
0 commit comments