From 845de093bad3fddfee34a3f56e5e20c1a7fec0d4 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Sun, 2 May 2021 21:42:55 +0200 Subject: [PATCH] Let the formatter run at that --- bin/app-json.py | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/bin/app-json.py b/bin/app-json.py index 4289e17..79e01e6 100755 --- a/bin/app-json.py +++ b/bin/app-json.py @@ -179,14 +179,9 @@ def get_app_metadata(app_path): "source": match.split(",")[-1].replace("*", "").strip(), } elif title == "status": - value = { - "βΆπŸ’š": 1, - "β·πŸ’›": 2, - "❸🍎": 3, - "βΉπŸ’£": 4, - "?": 5, - "": 5 - }[match.split(":")[-1].replace("*", "").strip()] + value = {"βΆπŸ’š": 1, "β·πŸ’›": 2, "❸🍎": 3, "βΉπŸ’£": 4, "?": 5, "": 5}[ + match.split(":")[-1].replace("*", "").strip() + ] else: value = match.split(":")[-1].replace("*", "").strip()