We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6be6273 commit 2e93129Copy full SHA for 2e93129
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