add introspect=False to get_object calls for performance
diff --git a/bin/chassis_control.py b/bin/chassis_control.py
index aa656fd..8ae0f55 100755
--- a/bin/chassis_control.py
+++ b/bin/chassis_control.py
@@ -69,7 +69,7 @@
 
 	def getInterface(self,name):
 		o = self.dbus_objects[name]
-		obj = bus.get_object(o['bus_name'],o['object_name'])
+		obj = bus.get_object(o['bus_name'],o['object_name'],introspect=False)
 		return dbus.Interface(obj,o['interface_name'])