lint: Fix a new % format string that should be fstring.

This commit is contained in:
Tim Abbott 2020-06-15 00:12:08 -07:00
parent 769e198ab0
commit f448ee404a
1 changed files with 1 additions and 1 deletions

View File

@ -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],