peterhinch / micropython-async

Application of uasyncio to hardware interfaces. Tutorial and code.
MIT License
726 stars 166 forks source link

__init__.py: import of Encoder fails. #106

Closed ned-pcs closed 1 year ago

ned-pcs commented 1 year ago

In v3/primitives/__init__.py the _attrs table has

    "Encode": "encoder_async",

but it should be

    "Encoder": "encoder",

instead.

ned-pcs commented 1 year ago

PR #107 fixes this.

peterhinch commented 1 year ago

Thank you.