fix(py-sdk): removed asyncio package

tested websocket with example.py without asyncio and it works with no problem.
This commit is contained in:
rafaelsideguide 2024-09-10 10:25:27 -03:00
parent 1074e976cd
commit ee8a54213c
3 changed files with 1 additions and 4 deletions

View File

@ -13,7 +13,6 @@ import logging
import os
import time
from typing import Any, Dict, Optional, List
import asyncio
import json
import requests

View File

@ -12,8 +12,7 @@ dependencies = [
"requests",
"python-dotenv",
"websockets",
"asyncio",
"nest-asyncio"
"nest-asyncio"
]
authors = [{name = "Mendable.ai",email = "nick@mendable.ai"}]
maintainers = [{name = "Mendable.ai",email = "nick@mendable.ai"}]

View File

@ -2,5 +2,4 @@ requests
pytest
python-dotenv
websockets
asyncio
nest-asyncio