@@ -68,10 +68,10 @@ Classes
6868 either raise an ``"error" `` (default), ``"ignore" `` the property
6969 or ``"reuse" `` the D-Bus name for the member.
7070 :return: dictionary of properties
71- :rtype: Dict [str, Any]
71+ :rtype: dict [str, Any]
7272
7373 .. py :attribute :: properties_changed
74- :type: Tuple [str, Dict [str, Tuple [str, Any]], List [str]]
74+ :type: tuple [str, dict [str, tuple [str, Any]], list [str]]
7575
7676 Signal when one of the objects properties changes.
7777
@@ -83,11 +83,11 @@ Classes
8383 Interface name : str
8484 Name of the interface where property changed
8585
86- Changed properties : Dict [str, Tuple [str, Any]]
86+ Changed properties : dict [str, tuple [str, Any]]
8787 Dictionary there keys are names of properties changed and
8888 values are variants of new value.
8989
90- Invalidated properties : List [str]
90+ Invalidated properties : list [str]
9191 List of property names changed but no new value had been provided
9292
9393 .. py :method :: _proxify(bus, service_name, object_path)
@@ -199,12 +199,12 @@ Classes
199199 Triple nested dictionary that contains all the objects
200200 paths with their properties values.
201201
202- Dict [ObjectPath, Dict [InterfaceName, Dict [PropertyName, PropertyValue]]]
202+ dict [ObjectPath, dict [InterfaceName, dict [PropertyName, PropertyValue]]]
203203
204- :rtype: Dict [str, Dict [str, Dict [str, Any]]]
204+ :rtype: dict [str, dict [str, dict [str, Any]]]
205205
206206 .. py :attribute :: interfaces_added
207- :type: Tuple [str, Dict [str, Dict [str, Any]]]
207+ :type: tuple [str, dict [str, dict [str, Any]]]
208208
209209 Signal when a new object is added or and existing object
210210 gains a new interface.
@@ -217,11 +217,11 @@ Classes
217217 Object path : str
218218 Path to object that was added or modified.
219219
220- Object interfaces and properties : Dict [str, Dict [str, Any]]]
221- Dict [InterfaceName, Dict [PropertyName, PropertyValue]]
220+ Object interfaces and properties : dict [str, dict [str, Any]]]
221+ dict [InterfaceName, dict [PropertyName, PropertyValue]]
222222
223223 .. py :attribute :: interfaces_removed
224- :type: Tuple [str, List [str]]
224+ :type: tuple [str, list [str]]
225225
226226 Signal when existing object or and interface of
227227 existing object is removed.
@@ -234,7 +234,7 @@ Classes
234234 Object path : str
235235 Path to object that was removed or modified.
236236
237- Interfaces list : List [str]
237+ Interfaces list : list [str]
238238 Interfaces names that were removed.
239239
240240 .. py :method :: export_with_manager(object_path, object_to_export, bus)
0 commit comments