Skip to content

Commit 045bdef

Browse files
committed
update
1 parent 267f8a3 commit 045bdef

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

circuitpython_uplot/uplot.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
except ImportError:
3131
pass
3232
import displayio
33-
from displayio import Group
3433
import terminalio
3534
from bitmaptools import draw_line
3635
from vectorio import Circle

docs/conf.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,16 @@
2525
"ulab": ("https://micropython-ulab.readthedocs.io/en/latest/", None),
2626
}
2727

28-
autodoc_mock_imports = ["digitalio", "busio", "bitmaptools", "vectorio", "ulab"]
28+
autodoc_mock_imports = [
29+
"digitalio",
30+
"busio",
31+
"bitmaptools",
32+
"vectorio",
33+
"ulab",
34+
"displayio",
35+
"terminalio",
36+
]
37+
2938
# Show the docstring from both the class and its __init__() method.
3039
autoclass_content = "both"
3140
# Add any paths that contain templates here, relative to this directory.

0 commit comments

Comments
 (0)