Skip to content

Commit

Permalink
Fixed failing test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
GhostOps77 committed Jun 23, 2024
1 parent ce803fb commit b5e457a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion click_repl/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
import shlex
import typing as t
from typing import Callable, NoReturn, Sequence, Generator, Iterator
from typing_extensions import TypeAlias
from collections import defaultdict

from .exceptions import CommandLineParserError, ExitReplException

T = t.TypeVar('T')
InternalCommandCallback: t.TypeAlias = Callable[[], None]
InternalCommandCallback: TypeAlias = Callable[[], None]


__all__ = [
Expand Down

0 comments on commit b5e457a

Please sign in to comment.