diff --git a/src/typeshed_stats/__init__.py b/src/typeshed_stats/__init__.py index ad40908c..81282a50 100644 --- a/src/typeshed_stats/__init__.py +++ b/src/typeshed_stats/__init__.py @@ -1,12 +1,12 @@ """Library and command-line tool for getting stats on various typeshed packages.""" __all__ = [ - "__title__", - "__summary__", "__about__", "__author__", "__email__", "__license__", + "__summary__", + "__title__", "__version__", ] diff --git a/src/typeshed_stats/_cli.py b/src/typeshed_stats/_cli.py index c4ddbd71..0daeedbc 100644 --- a/src/typeshed_stats/_cli.py +++ b/src/typeshed_stats/_cli.py @@ -20,7 +20,7 @@ ) from typeshed_stats.serialize import stats_to_csv, stats_to_json, stats_to_markdown -__all__ = ["OutputOption", "SUPPORTED_EXTENSIONS", "main"] +__all__ = ["SUPPORTED_EXTENSIONS", "OutputOption", "main"] def _format_stats_for_pprinting( diff --git a/src/typeshed_stats/gather.py b/src/typeshed_stats/gather.py index ffd61222..d475f32f 100644 --- a/src/typeshed_stats/gather.py +++ b/src/typeshed_stats/gather.py @@ -24,7 +24,6 @@ Self, TypeAlias, TypeGuard, - TypeVar, final, )