add introspect=False to get_object calls for performance
diff --git a/bin/fan_control.py b/bin/fan_control.py
index 1a528fd..bb070e5 100755
--- a/bin/fan_control.py
+++ b/bin/fan_control.py
@@ -34,7 +34,7 @@
 		## create interface proxies to all fans
 		for fan in FAN_OBJS:
 			print "Initializing fan: "+fan
-			obj = bus.get_object(FAN_BUS,fan)
+			obj = bus.get_object(FAN_BUS,fan,introspect=False)
 			self.fan_intf.append(dbus.Interface(obj,FAN_IFACE))
 		self.InterfacesAdded(name,self.properties)