Use a boolean rather than an int

This commit is contained in:
Kovid Goyal
2023-11-14 16:35:01 +05:30
parent 04506975e5
commit 69e3e5c727
3 changed files with 6 additions and 3 deletions

View File

@@ -53,6 +53,9 @@ class Callbacks:
def color_profile_popped(self, x) -> None:
pass
def cmd_output_marking(self, is_start: bool) -> None:
pass
def request_capabilities(self, q) -> None:
from kitty.terminfo import get_capabilities
for c in get_capabilities(q, None):