cozmo-python-sdk icon indicating copy to clipboard operation
cozmo-python-sdk copied to clipboard

fix for issue #215, #216, and #218

Open SRamezanH opened this issue 2 years ago • 2 comments

a quick fix for issues #215, #216, and #218. caused by updates in asyncio.

SRamezanH avatar Aug 22 '22 20:08 SRamezanH

I also found an AttributeError with the camera annotate script..

File "cozmo/annotate.py", line 181, in add_img_box_to_image
    if isinstance(text, collections.Iterable):

I made a simple fix.

if isinstance(text, collections.abc.Iterable):

LoKiToon avatar Sep 11 '22 17:09 LoKiToon

loop=self.loop, should also be removed on line 452 of usbmux.py

mhuebert avatar Jan 07 '23 15:01 mhuebert