From 7cc3bd598db3172cdd65e65978a19d07b0f04f8c Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 00:38:08 +0000 Subject: [PATCH] style: pre-commit.ci auto fixes [...] --- README.md | 1 - src/mozilla_linux_pkg_manager/cli.py | 6 ++++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 46a4812..3d4d5d8 100644 --- a/README.md +++ b/README.md @@ -155,4 +155,3 @@ The `mozilla-linux-pkg-manager` package can be packaged into a wheel file for di ### Using the Installed Package After installation, the package can be used from anywhere on your system, provided you are running the Python interpreter where it was installed. - diff --git a/src/mozilla_linux_pkg_manager/cli.py b/src/mozilla_linux_pkg_manager/cli.py index 8877b18..75e6473 100644 --- a/src/mozilla_linux_pkg_manager/cli.py +++ b/src/mozilla_linux_pkg_manager/cli.py @@ -1,8 +1,8 @@ import argparse import asyncio +import json import logging import os -import json import re import time from collections import defaultdict @@ -154,7 +154,9 @@ async def clean_up(args): logging.info( f"Out of those versions, there are {len(unique_expired_versions)} unique versions across all packages." ) - logging.info(f"Found unique expired versions:\nunique_expired_versions = {json.dumps(list(unique_expired_versions), indent=4)}") + logging.info( + f"Found unique expired versions:\nunique_expired_versions = {json.dumps(list(unique_expired_versions), indent=4)}" + ) if args.skip_delete: logging.info(