Skip to content

Commit cc407c8

Browse files
authored
Merge pull request #61 from lf-/patch-1
Typo fix
2 parents b1cec3f + 2e93129 commit cc407c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pydbus/proxy_signal.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def __init__(self, signal):
3232
self.signal = signal
3333
self.__name__ = "on" + signal.__name__
3434
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) + ")"
35+
self.__doc__ = "Assign a callback to subscribe to the signal. Assign None to unsubscribe. Callback: (" + ", ".join(signal._args) + ")"
3636

3737
def __get__(self, instance, owner):
3838
if instance is None:

0 commit comments

Comments
 (0)