Skip to content

Commit

Permalink
And again with mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Dec 21, 2024
1 parent 3bee185 commit b959ac5
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions kitty/child.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,14 @@
from collections.abc import Generator, Sequence
from contextlib import contextmanager, suppress
from itertools import count
from typing import TYPE_CHECKING, DefaultDict, Optional
from typing import TYPE_CHECKING, DefaultDict, Optional, TypedDict

import kitty.fast_data_types as fast_data_types

from .constants import handled_signals, is_freebsd, is_macos, kitten_exe, kitty_base_dir, shell_path, terminfo_dir
from .types import run_once
from .utils import cmdline_for_hold, log_error, which

try:
from typing import TypedDict
except ImportError:
TypedDict = dict
if TYPE_CHECKING:
from .window import CwdRequest

Expand Down

0 comments on commit b959ac5

Please sign in to comment.