1
0
Fork 0
mirror of https://github.com/YunoHost/apps.git synced 2024-09-03 20:06:07 +02:00

🎨 Format Python code with Black

This commit is contained in:
alexAubin 2024-03-13 22:19:42 +00:00 committed by github-actions[bot]
parent bab6f34889
commit 54832fa891

View file

@ -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)