use inherited instead of inherit

This commit is contained in:
Kovid Goyal
2022-03-06 09:54:33 +05:30
parent 482b853908
commit 31b01d42c0
3 changed files with 4 additions and 4 deletions

View File

@@ -78,7 +78,7 @@ def make_tarfile(ssh_opts: SSHOptions, base_env: Dict[str, str]) -> bytes:
return filter
from kitty.shell_integration import get_effective_ksi_env_var
if ssh_opts.shell_integration == 'inherit':
if ssh_opts.shell_integration == 'inherited':
ksi = get_effective_ksi_env_var()
else:
from kitty.options.types import Options