Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
kinuax committed May 15, 2024
1 parent 821b06d commit 314f504
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
10 changes: 8 additions & 2 deletions typer/_typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
TYPE_CHECKING,
AbstractSet,
Any,
Callable as TypingCallable,
ClassVar,
Dict,
ForwardRef,
Expand All @@ -26,9 +25,16 @@
Union,
_eval_type,
cast,
get_type_hints,
)
from typing import (
Callable as TypingCallable,
)
from typing import (
get_args as _typing_get_args,
)
from typing import (
get_origin as _typing_get_origin,
get_type_hints,
)

from typing_extensions import Annotated, Literal
Expand Down
1 change: 0 additions & 1 deletion typer/rich_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
from rich.text import Text
from rich.theme import Theme


# Default styles
STYLE_OPTION = "bold cyan"
STYLE_SWITCH = "bold green"
Expand Down

0 comments on commit 314f504

Please sign in to comment.