summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLouis-Philippe VĂ©ronneau <pollo@debian.org>2020-04-05 21:46:52 -0400
committerjaseg <code@jaseg.net>2020-07-15 22:03:37 +0200
commitb4f5b106993e96349bd3abb6831e120152f423aa (patch)
tree1b966cad51b3afaa752aba344e72a85e5960d1ea
parentdb644cd74eca843f8342d2c6d38b5d220fe57559 (diff)
downloadpython-mpv-b4f5b106993e96349bd3abb6831e120152f423aa.tar.gz
python-mpv-b4f5b106993e96349bd3abb6831e120152f423aa.tar.bz2
python-mpv-b4f5b106993e96349bd3abb6831e120152f423aa.zip
remove superfluous whitespaces
-rw-r--r--README.rst2
-rw-r--r--mpv.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index dbc0d4a..a156814 100644
--- a/README.rst
+++ b/README.rst
@@ -285,7 +285,7 @@ PyGObject embedding
application = MainClass()
Gtk.main()
-Using OpenGL from PyGObject via new render context API
+Using OpenGL from PyGObject via new render context API
......................................................
Just like it is possible to render into a GTK widget through X11 windows, it `also is possible to render into a GTK
diff --git a/mpv.py b/mpv.py
index 988e360..ef1dade 100644
--- a/mpv.py
+++ b/mpv.py
@@ -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)]