Skip to content

Commit

Permalink
Typo fix
Browse files Browse the repository at this point in the history
assing -> assign
  • Loading branch information
lf- authored Jun 16, 2017
1 parent 6be6273 commit 2e93129
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydbus/proxy_signal.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, signal):
self.signal = signal
self.__name__ = "on" + signal.__name__
self.__qualname__ = signal._iface_name + "." + self.__name__
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) + ")"

def __get__(self, instance, owner):
if instance is None:
Expand Down

0 comments on commit 2e93129

Please sign in to comment.