summaryrefslogtreecommitdiffstats
path: root/tests/testmodule.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testmodule.py')
-rw-r--r--tests/testmodule.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testmodule.py b/tests/testmodule.py
index 2fda01f..5fc29b3 100644
--- a/tests/testmodule.py
+++ b/tests/testmodule.py
@@ -8,7 +8,7 @@ class PyGObject(gobject.GObject):
'the label of the object',
'default', gobject.PARAM_READWRITE),
}
-
+
def __init__(self):
self._props = {}
gobject.GObject.__init__(self)
@@ -16,6 +16,6 @@ class PyGObject(gobject.GObject):
def do_set_property(self, name, value):
self._props[name] = value
-
+
def do_get_property(self, name):
return self._props[name]