diff options
author | Johan Dahlin <johan@src.gnome.org> | 2006-04-11 14:11:09 +0000 |
---|---|---|
committer | Johan Dahlin <johan@src.gnome.org> | 2006-04-11 14:11:09 +0000 |
commit | d775961664e4755481ef01c192ea8b8d27cf7567 (patch) | |
tree | 60beef30983edffbc29f74db19ef6163ee743f33 /tests/testmodule.py | |
parent | be8d076bbafd3bb5f26fa8716ff6e898b76b1d1a (diff) | |
download | pygobject-d775961664e4755481ef01c192ea8b8d27cf7567.tar.gz pygobject-d775961664e4755481ef01c192ea8b8d27cf7567.tar.xz pygobject-d775961664e4755481ef01c192ea8b8d27cf7567.zip |
reindent
Diffstat (limited to 'tests/testmodule.py')
-rw-r--r-- | tests/testmodule.py | 4 |
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] |