@@ -129,6 +129,7 @@ class OrgBluezNetwork1Dict(TypedDict, total=False):
129
129
UUID : str
130
130
131
131
# This is for keys under /org/bluez/hci0/*
132
+ # Refer to https://github.com/bluez/bluez/blob/master/doc/ for interface details
132
133
_OrgBluezDict = TypedDict (
133
134
"_OrgBluezDict" ,
134
135
{
@@ -143,18 +144,13 @@ _OrgBluezDict = TypedDict(
143
144
"org.bluez.Media1" : OrgBluezMedia1Dict ,
144
145
"org.bluez.Network1" : OrgBluezNetwork1Dict ,
145
146
"org.bluez.MediaControl1" : OrgBluezMediaControl1Dict ,
146
- # Dicts below are always empty because they have no properties.
147
- # https://github.com/bluez/bluez/blob/master/doc/org.bluez.AgentManager.rst
147
+ # Dicts below are always empty because they have no properties. However, the key existence may still be useful
148
+ # for introspection.
148
149
"org.bluez.AgentManager1" : dict [str , Any ],
149
- # https://github.com/bluez/bluez/blob/master/doc/org.bluez.BatteryProviderManager.rst
150
150
"org.bluez.BatteryProviderManager1" : dict [str , Any ],
151
- # https://github.com/bluez/bluez/blob/master/doc/org.bluez.NetworkServer.rst
152
151
"org.bluez.NetworkServer1" : dict [str , Any ],
153
- # https://github.com/bluez/bluez/blob/master/doc/org.bluez.ProfileManager.rst
154
152
"org.bluez.ProfileManager1" : dict [str , Any ],
155
- # https://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-introspectable
156
153
"org.freedesktop.DBus.Introspectable" : dict [str , Any ],
157
- # https://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-properties
158
154
"org.freedesktop.DBus.Properties" : dict [str , Any ],
159
155
},
160
156
total = False ,
0 commit comments