Fix type annotation mistake

This commit is contained in:
Jeff Epler 2022-11-07 13:51:58 -06:00
parent 9cdfba2e47
commit 319d9b04f1
No known key found for this signature in database
GPG Key ID: D5BF15AB975AB4DE
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@
//| scroll_area: displayio.TileGrid,
//| font: fontio.BuiltinFont,
//| *,
//| status_bar: displayio.TileGrid = None
//| status_bar: Optional[displayio.TileGrid] = None
//| ) -> None:
//| """Terminal manages tile indices and cursor position based on VT100 commands. The font should be
//| a `fontio.BuiltinFont` and the TileGrid's bitmap should match the font's bitmap."""