Skip to content
#

monochrome-oled-displays

Here are 6 public repositories matching this topic...

Language: All
Filter by language
FoamyGuy
FoamyGuy commented Sep 27, 2021

There are missing type annotations for some functions in this library.

The typing module does not exist on CircuitPython devices so the import needs to be wrapped in try/except to catch the error for missing import. There is an example of how that is done here:

try:
    from typing import List, Tuple
except ImportError:
    pass

Once imported the typing annotations for the argum

documentation good first issue
FoamyGuy
FoamyGuy commented Sep 27, 2021

There are missing type annotations for some functions in this library.

The typing module does not exist on CircuitPython devices so the import needs to be wrapped in try/except to catch the error for missing import. There is an example of how that is done here:

try:
    from typing import List, Tuple
except ImportError:
    pass

Once imported the typing annotations for the argum

documentation good first issue

Improve this page

Add a description, image, and links to the monochrome-oled-displays topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the monochrome-oled-displays topic, visit your repo's landing page and select "manage topics."

Learn more