🎨 Format Python code with Black

This commit is contained in:
Tagadda 2024-08-15 18:50:36 +00:00 committed by OniriCorpe
parent f88e4cacdf
commit 4d5cc62540

View file

@ -2937,7 +2937,9 @@ def _get_conflicting_apps(domain, path, ignore_app=None):
for p, a in apps_map[domain].items():
if a["id"] == ignore_app:
continue
if path == p or ( not path.startswith("/.well-known/") and ( path == "/" or p == "/" ) ):
if path == p or (
not path.startswith("/.well-known/") and (path == "/" or p == "/")
):
conflicts.append((p, a["id"], a["label"]))
return conflicts