From 2ab59d947670bfa21dcbf1834b61337a77ccbbd7 Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Sat, 27 Jul 2019 00:24:04 +0200 Subject: [PATCH] Fix formatting --- app.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app.py b/app.py index 34678dc..061ae97 100644 --- a/app.py +++ b/app.py @@ -758,9 +758,7 @@ def remote_follow(): profile = request.form.get("profile") if not profile.startswith("@"): profile = f"@{profile}" - return redirect( - get_remote_follow_template(profile).format(uri=ID) - ) + return redirect(get_remote_follow_template(profile).format(uri=ID)) @app.route("/authorize_follow", methods=["GET", "POST"])