🔥 Clean exports from typer, remove unneeded Click components, add needed ones

Clean exports from typer, remove unneeded Click components
This commit is contained in:
Sebastián Ramírez 2019-12-28 15:22:22 +01:00 committed by GitHub
commit 72466cb328
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,17 +2,7 @@
__version__ = "0.0.4"
from click.exceptions import ( # noqa
Abort,
BadArgumentUsage,
BadOptionUsage,
BadParameter,
ClickException,
FileError,
MissingParameter,
NoSuchOption,
UsageError,
)
from click.exceptions import Abort, Exit # noqa
from click.termui import ( # noqa
clear,
confirm,
@ -33,7 +23,6 @@ from click.utils import ( # noqa
format_filename,
get_app_dir,
get_binary_stream,
get_os_args,
get_text_stream,
open_file,
)