retronews

a featureful fork of the luke8086/retronews hn+lobste.rs tui
Log | Files | Refs | README | LICENSE

commit 9cf2ace7cb33ff1770cdc05259b89ff833c8cc62
parent 4951dfc1e4caa19c13829cad68699a94adfff436
Author: luke8086 <55237178+luke8086@users.noreply.github.com>
Date:   Mon,  1 Aug 2022 18:47:17 +0000

Add missing type hint

Diffstat:
Mretronews.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/retronews.py b/retronews.py @@ -34,7 +34,7 @@ from typing import ( cast, ) -KEY_BINDINGS = { +KEY_BINDINGS: dict[int, Callable[["AppState"], None]] = { ord("q"): lambda app: cmd_quit(app), ord("?"): lambda app: cmd_help(app), ord("\n"): lambda app: cmd_open(app),