@@ -700,19 +700,19 @@ def show_citations(self, event: wx.CommandEvent | None = None):
700700 key_actions = {
701701 (wx .MOD_SHIFT , wx .WXK_SPACE ): on_toggle_speak_response ,
702702 (wx .MOD_NONE , wx .WXK_SPACE ): on_read_current_message ,
703- (wx .MOD_NONE , ord ('J' )): go_to_previous_message ,
704- (wx .MOD_NONE , ord ('K' )): go_to_next_message ,
705- (wx .MOD_NONE , ord ('S' )): on_select_current_message ,
706- (wx .MOD_NONE , ord ('H' )): on_show_as_html ,
707- (wx .MOD_NONE , ord ('Q' )): show_citations ,
708- (wx .MOD_NONE , ord ('C' )): on_copy_message ,
709- (wx .MOD_NONE , ord ('B' )): move_to_start_of_message ,
710- (wx .MOD_NONE , ord ('N' )): move_to_end_of_message ,
711- (wx .MOD_NONE , ord ('E' )): on_edit_message_block ,
703+ (wx .MOD_NONE , ord ("J" )): go_to_previous_message ,
704+ (wx .MOD_NONE , ord ("K" )): go_to_next_message ,
705+ (wx .MOD_NONE , ord ("S" )): on_select_current_message ,
706+ (wx .MOD_NONE , ord ("H" )): on_show_as_html ,
707+ (wx .MOD_NONE , ord ("Q" )): show_citations ,
708+ (wx .MOD_NONE , ord ("C" )): on_copy_message ,
709+ (wx .MOD_NONE , ord ("B" )): move_to_start_of_message ,
710+ (wx .MOD_NONE , ord ("N" )): move_to_end_of_message ,
711+ (wx .MOD_NONE , ord ("E" )): on_edit_message_block ,
712712 (wx .MOD_SHIFT , wx .WXK_DELETE ): on_remove_message_block ,
713713 (wx .MOD_NONE , wx .WXK_F3 ): on_search_next ,
714- (wx .MOD_NONE , ord ('F' )): on_search ,
715- (wx .MOD_CONTROL , ord ('F' )): on_search ,
714+ (wx .MOD_NONE , ord ("F" )): on_search ,
715+ (wx .MOD_CONTROL , ord ("F" )): on_search ,
716716 (wx .MOD_SHIFT , wx .WXK_F3 ): on_search_previous ,
717717 }
718718
0 commit comments