diff options
Diffstat (limited to 'examples/rpc_client_side.py')
-rw-r--r-- | examples/rpc_client_side.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/rpc_client_side.py b/examples/rpc_client_side.py index ca1084f0..135d6237 100644 --- a/examples/rpc_client_side.py +++ b/examples/rpc_client_side.py @@ -16,7 +16,7 @@ class Thermostat(Endpoint): def FQN(self): return 'thermostat' - def __init(self, initial_temperature): + def __init__(self, initial_temperature): self._temperature = initial_temperature self._event = threading.Event() @@ -50,4 +50,4 @@ def main(): if __name__ == '__main__': main() -
\ No newline at end of file + |