mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-16 08:44:38 +08:00
test/example-gatt-server: Fix error on Property.GetAll
get_properties is a method not a dictionary which cause the following error: TypeError: 'method' object is not subscriptable
This commit is contained in:
parent
1040ee7f37
commit
e3199baab8
@ -117,7 +117,7 @@ class Service(dbus.service.Object):
|
||||
if interface != GATT_SERVICE_IFACE:
|
||||
raise InvalidArgsException()
|
||||
|
||||
return self.get_properties[GATT_SERVICE_IFACE]
|
||||
return self.get_properties()[GATT_SERVICE_IFACE]
|
||||
|
||||
|
||||
class Characteristic(dbus.service.Object):
|
||||
@ -164,7 +164,7 @@ class Characteristic(dbus.service.Object):
|
||||
if interface != GATT_CHRC_IFACE:
|
||||
raise InvalidArgsException()
|
||||
|
||||
return self.get_properties[GATT_CHRC_IFACE]
|
||||
return self.get_properties()[GATT_CHRC_IFACE]
|
||||
|
||||
@dbus.service.method(GATT_CHRC_IFACE,
|
||||
in_signature='a{sv}',
|
||||
@ -222,7 +222,7 @@ class Descriptor(dbus.service.Object):
|
||||
if interface != GATT_DESC_IFACE:
|
||||
raise InvalidArgsException()
|
||||
|
||||
return self.get_properties[GATT_CHRC_IFACE]
|
||||
return self.get_properties()[GATT_CHRC_IFACE]
|
||||
|
||||
@dbus.service.method(GATT_DESC_IFACE,
|
||||
in_signature='a{sv}',
|
||||
|
Loading…
Reference in New Issue
Block a user