remove superfluous whitespaces

This commit is contained in:
Louis-Philippe Véronneau 2020-04-05 21:46:52 -04:00 committed by jaseg
parent db644cd74e
commit b4f5b10699
2 changed files with 3 additions and 3 deletions

4
mpv.py
View file

@ -144,7 +144,7 @@ class MpvOpenGLFBO(Structure):
('w', c_int),
('h', c_int),
('internal_format', c_int)]
def __init__(self, w, h, fbo=0, internal_format=0):
self.w, self.h = w, h
self.fbo = fbo
@ -164,7 +164,7 @@ class MpvOpenGLDRMParams(Structure):
('connector_id', c_int),
('atomic_request_ptr', c_void_p),
('render_fd', c_int)]
class MpvOpenGLDRMDrawSurfaceSize(Structure):
_fields_ = [('width', c_int), ('height', c_int)]