We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b1cec3f + 2e93129 commit cc407c8Copy full SHA for cc407c8
pydbus/proxy_signal.py
@@ -32,7 +32,7 @@ def __init__(self, signal):
32
self.signal = signal
33
self.__name__ = "on" + signal.__name__
34
self.__qualname__ = signal._iface_name + "." + self.__name__
35
- self.__doc__ = "Assign a callback to subscribe to the signal. Assing None to unsubscribe. Callback: (" + ", ".join(signal._args) + ")"
+ self.__doc__ = "Assign a callback to subscribe to the signal. Assign None to unsubscribe. Callback: (" + ", ".join(signal._args) + ")"
36
37
def __get__(self, instance, owner):
38
if instance is None:
0 commit comments