From f448ee404a260e5c7e6647b0010feecccfe25d9d Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Mon, 15 Jun 2020 00:12:08 -0700 Subject: [PATCH] lint: Fix a new % format string that should be fstring. --- zerver/tests/test_auth_backends.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zerver/tests/test_auth_backends.py b/zerver/tests/test_auth_backends.py index 88cf0862c7..d5cd68f821 100644 --- a/zerver/tests/test_auth_backends.py +++ b/zerver/tests/test_auth_backends.py @@ -2099,7 +2099,7 @@ class AppleAuthBackendNativeFlowTest(AppleAuthMixin, SocialAuthBase): if subdomain: params['subdomain'] = subdomain - url += "&%s" % (urllib.parse.urlencode(params),) + url += f"&{urllib.parse.urlencode(params)}" return url, headers def social_auth_test(self, account_data_dict: Dict[str, str],