Refine coding style.
authorHuang Peng <shawn.p.huang@gmail.com>
Wed, 30 Jul 2008 01:13:34 +0000 (09:13 +0800)
committerHuang Peng <shawn.p.huang@gmail.com>
Wed, 30 Jul 2008 01:13:34 +0000 (09:13 +0800)
ibus/interface/iconfig.py

index 04e3f5c..7758927 100644 (file)
@@ -25,20 +25,20 @@ import dbus.service
 from ibus.common import \
     IBUS_CONFIG_IFACE
 
-class IConfig (dbus.service.Object):
+class IConfig(dbus.service.Object):
     # define method decorator.
     method = lambda **args: \
-        dbus.service.method (dbus_interface = IBUS_CONFIG_IFACE, \
+        dbus.service.method(dbus_interface = IBUS_CONFIG_IFACE, \
             **args)
 
     # define signal decorator.
     signal = lambda **args: \
-        dbus.service.signal (dbus_interface = IBUS_CONFIG_IFACE, \
+        dbus.service.signal(dbus_interface = IBUS_CONFIG_IFACE, \
             **args)
 
     # define async method decorator.
     async_method = lambda **args: \
-        dbus.service.method (dbus_interface = IBUS_CONFIG_IFACE, \
+        dbus.service.method(dbus_interface = IBUS_CONFIG_IFACE, \
             async_callbacks = ("reply_cb", "error_cb"), \
             **args)
 
@@ -49,39 +49,39 @@ class IConfig (dbus.service.Object):
     def SetValue(self, key, value): pass
 
 
-    @method (in_signature = "s", out_signature = "s")
-    def GetString (self, key): pass
+    @method(in_signature = "s", out_signature = "s")
+    def GetString(self, key): pass
 
-    @method (in_signature = "s", out_signature = "i")
-    def GetInt (self, key): pass
+    @method(in_signature = "s", out_signature = "i")
+    def GetInt(self, key): pass
 
-    @method (in_signature = "s", out_signature = "b")
-    def GetBool (self, key): pass
+    @method(in_signature = "s", out_signature = "b")
+    def GetBool(self, key): pass
 
-    @method (in_signature = "s", out_signature = "f")
-    def GetFloat (self, key): pass
+    @method(in_signature = "s", out_signature = "f")
+    def GetFloat(self, key): pass
 
-    @method (in_signature = "s", out_signature = "av")
-    def GetList (self, key): pass
+    @method(in_signature = "s", out_signature = "av")
+    def GetList(self, key): pass
 
-    @method (in_signature = "ss")
-    def SetString (self, key, value): pass
+    @method(in_signature = "ss")
+    def SetString(self, key, value): pass
 
-    @method (in_signature = "si")
-    def SetInt (self, key, value): pass
+    @method(in_signature = "si")
+    def SetInt(self, key, value): pass
 
-    @method (in_signature = "sb")
-    def SetBool (self, key, value): pass
+    @method(in_signature = "sb")
+    def SetBool(self, key, value): pass
 
-    @method (in_signature = "sf")
-    def SetFloat (self, key, value): pass
+    @method(in_signature = "sf")
+    def SetFloat(self, key, value): pass
 
-    @method (in_signature = "sav")
-    def SetList (self, key, value): pass
+    @method(in_signature = "sav")
+    def SetList(self, key, value): pass
 
-    @method ()
-    def Destroy (self): pass
+    @method()
+    def Destroy(self): pass
 
-    @signal (signature = "sv")
-    def ValueChanged (self, key, value): pass
+    @signal(signature = "sv")
+    def ValueChanged(self, key, value): pass