Often when I install this locally an error occurs: ImportError:
cannot import name 'Server' from 'asyncio' (C:\Users\User\AppData\Local\Programs\Python\Python310\lib\asyncio\__init__.py)
This can be solved by replacing the imports here to:
import asyncio
import functools
from asyncio import AbstractEventLoop, Future, IncompleteReadError
import logging
import random
import time
from typing import List, Callable, Optional
from .timestamped_unsigned_char_vector import TimestampedUnsignedCharVector
Often when I install this locally an error occurs: ImportError:
cannot import name 'Server' from 'asyncio' (C:\Users\User\AppData\Local\Programs\Python\Python310\lib\asyncio\__init__.py)
This can be solved by replacing the imports here to: