Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ repos:
language: unsupported
pass_filenames: false

- id: local-ty
name: ty check
entry: uv run ty check typer
require_serial: true
language: unsupported
pass_filenames: false
# - id: local-ty
# name: ty check
# entry: uv run ty check typer
# require_serial: true
# language: unsupported
# pass_filenames: false

- id: generate-readme
language: unsupported
Expand Down
9 changes: 2 additions & 7 deletions typer/_click/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,11 @@

from __future__ import annotations

from .core import Argument as Argument
from ._utils import UNSET as UNSET
from .core import Command as Command
from .core import Context as Context
from .core import Group as Group
from .core import Option as Option
from .core import Parameter as Parameter
from .decorators import help_option as help_option
from .decorators import option as option
from .core import ParameterSource as ParameterSource
from .exceptions import Abort as Abort
from .exceptions import BadArgumentUsage as BadArgumentUsage
from .exceptions import BadOptionUsage as BadOptionUsage
Expand All @@ -36,13 +33,11 @@
from .types import INT as INT
from .types import STRING as STRING
from .types import UUID as UUID
from .types import Choice as Choice
from .types import DateTime as DateTime
from .types import File as File
from .types import FloatRange as FloatRange
from .types import IntRange as IntRange
from .types import ParamType as ParamType
from .types import Path as Path
from .types import Tuple as Tuple
from .utils import echo as echo
from .utils import format_filename as format_filename
Expand Down
Loading
Loading