diff --git a/scratchattach/eventhandlers/cloud_server.py b/scratchattach/eventhandlers/cloud_server.py index 60e66ed3..1b545c40 100644 --- a/scratchattach/eventhandlers/cloud_server.py +++ b/scratchattach/eventhandlers/cloud_server.py @@ -223,7 +223,7 @@ def _check_value(self, value): return False return True - def _update(self): + def _updater(self): try: # Function called when .start() is executed (.start is inherited from BaseEventHandler) print(f"Serving websocket server: ws://{hostname}:{port}") @@ -241,4 +241,4 @@ def stop(self): self.running = False self.close() - return TwCloudServer(hostname, port=port, websocketclass=TwCloudSocket) \ No newline at end of file + return TwCloudServer(hostname, port=port, websocketclass=TwCloudSocket)