From a0057f4d83d4426b1c89c290fed2cf0ecfbece38 Mon Sep 17 00:00:00 2001 From: Bendt Date: Sun, 28 Dec 2025 13:35:26 -0500 Subject: [PATCH] fix: Correct HelpScreen instantiation - Fix missing app_bindings argument - Pass self.BINDINGS list to HelpScreen constructor - Help screen now works without crash --- src/mail/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mail/app.py b/src/mail/app.py index 25a1a9e..3192536 100644 --- a/src/mail/app.py +++ b/src/mail/app.py @@ -660,7 +660,7 @@ class EmailViewerApp(App): async def action_show_help(self) -> None: """Show help screen with keyboard shortcuts.""" - help_screen = HelpScreen() + help_screen = HelpScreen(list(self.BINDINGS)) self.push_screen(help_screen) def action_next(self) -> None: