diff --git a/src/pypi_data/cli.py b/src/pypi_data/cli.py index 45593aa6..14a65e61 100644 --- a/src/pypi_data/cli.py +++ b/src/pypi_data/cli.py @@ -23,7 +23,6 @@ app = typer.Typer() session = requests.Session() MB = 1024 * 1024 -GB = MB * 1024 console = Console() @@ -89,7 +88,7 @@ def group_by_size(github: Github, target_size: int) -> Iterable[list[tuple[int, @app.command() def group_index_urls(github_token: GithubToken, output_path: Annotated[Path, typer.Argument(dir_okay=True, file_okay=False)], - target_size: int = 1.3 * GB): + target_size: int = 700 * MB): g = github_client(github_token) outputs = [] group_dir = output_path / "groups"