Remove extra newlines

Fixes lint error
This commit is contained in:
Mike Place 2017-02-13 13:03:21 -07:00 committed by GitHub
parent 4e08534877
commit 24c1bd079d

View file

@ -43,7 +43,6 @@ if HAS_WIN32:
self.dwOSVersionInfoSize = ctypes.sizeof(self)
kernel32.GetVersionExW(ctypes.byref(self))
class OSVERSIONINFOEX(OSVERSIONINFO):
_fields_ = (('wServicePackMajor', WORD),
('wServicePackMinor', WORD),
@ -51,7 +50,6 @@ if HAS_WIN32:
('wProductType', BYTE),
('wReserved', BYTE))
def errcheck_bool(result, func, args):
if not result:
raise ctypes.WinError(ctypes.get_last_error())