Skip to content

Commit

Permalink
deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
rsrdesarrollo committed Sep 8, 2024
1 parent c1adb50 commit bd05c25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions moolticutepy/moolticue_client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from websocket import create_connection
from websockets.sync.client import connect
from moolticutepy import schemas
from moolticutepy.log import log
from pydantic import TypeAdapter
Expand All @@ -24,7 +24,7 @@ def __init__(self) -> None:
self._msg_in = queue.Queue()
self._management = False

self._ws = create_connection("ws://localhost:30035")
self._ws = connect("ws://localhost:30035")
self.start()

def run(self):
Expand Down

0 comments on commit bd05c25

Please sign in to comment.