Skip to content

Commit

Permalink
Merge pull request #2127 from YunoHost/actions/black
Browse files Browse the repository at this point in the history
Format Python code with Black
  • Loading branch information
alexAubin authored Mar 13, 2024
2 parents bab6f34 + 54832fa commit d2b8c99
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tools/app_caches.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,13 @@ def __run_for_catalog():
parser = argparse.ArgumentParser()
parser.add_argument("-v", "--verbose", action="store_true")
parser.add_argument("-j", "--processes", type=int, default=8)
parser.add_argument("-c", "--cleanup", action="store_true", default=False,
help="Remove unknown directories from the app cache")
parser.add_argument(
"-c",
"--cleanup",
action="store_true",
default=False,
help="Remove unknown directories from the app cache",
)
args = parser.parse_args()
if args.verbose:
logging.getLogger().setLevel(logging.INFO)
Expand Down

0 comments on commit d2b8c99

Please sign in to comment.