From c9bd3de2abe566eabf67c4f449c689f0c14d1626 Mon Sep 17 00:00:00 2001 From: alexAubin <4533074+alexAubin@users.noreply.github.com> Date: Wed, 13 Mar 2024 22:19:42 +0000 Subject: [PATCH] :art: Format Python code with Black --- app_caches.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/app_caches.py b/app_caches.py index cd6859d..9729dd5 100755 --- a/app_caches.py +++ b/app_caches.py @@ -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)