8000 Fix type annotation mistake · kylemccreery/circuitpython@319d9b0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 319d9b0

Browse files
committed
Fix type annotation mistake
1 parent 9cdfba2 commit 319d9b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shared-bindings/terminalio/Terminal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
//| scroll_area: displayio.TileGrid,
6262
//| font: fontio.BuiltinFont,
6363
//| *,
64-
//| status_bar: displayio.TileGrid = None
64+
//| status_bar: Optional[displayio.TileGrid] = None
6565
//| ) -> None:
6666
//| """Terminal manages tile indices and cursor position based on VT100 commands. The font should be
6767
//| a `fontio.BuiltinFont` and the TileGrid's bitmap should match the font's bitmap."""

0 commit comments

Comments
 (0)
0