From cbc569af645ebe3cdc46c72b0ec5ca35e51c818a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 25 Sep 2022 09:08:03 +0530 Subject: [PATCH] Remove no_response from json specs --- kitty/rc/focus_tab.py | 1 - kitty/rc/focus_window.py | 1 - kitty/rc/last_used_layout.py | 1 - 3 files changed, 3 deletions(-) diff --git a/kitty/rc/focus_tab.py b/kitty/rc/focus_tab.py index 93c0c597c..d9a401577 100644 --- a/kitty/rc/focus_tab.py +++ b/kitty/rc/focus_tab.py @@ -17,7 +17,6 @@ class FocusTab(RemoteCommand): protocol_spec = __doc__ = ''' match/str: The tab to focus - no_response/bool: Boolean indicating whether to wait for a response ''' short_desc = 'Focus the specified tab' diff --git a/kitty/rc/focus_window.py b/kitty/rc/focus_window.py index ad68bcc9e..12b8dbef4 100644 --- a/kitty/rc/focus_window.py +++ b/kitty/rc/focus_window.py @@ -18,7 +18,6 @@ if TYPE_CHECKING: class FocusWindow(RemoteCommand): protocol_spec = __doc__ = ''' match/str: The window to focus - no_response/bool: Boolean indicating whether to wait for a response ''' short_desc = 'Focus the specified window' diff --git a/kitty/rc/last_used_layout.py b/kitty/rc/last_used_layout.py index 7ca5d1604..99999cb02 100644 --- a/kitty/rc/last_used_layout.py +++ b/kitty/rc/last_used_layout.py @@ -17,7 +17,6 @@ class LastUsedLayout(RemoteCommand): protocol_spec = __doc__ = ''' match/str: Which tab to change the layout of all/bool: Boolean to match all tabs - no_response/bool: Boolean indicating whether to wait for a response ''' short_desc = 'Switch to the last used layout'