mirror of https://github.com/zulip/zulip.git
lint: Fix a new % format string that should be fstring.
This commit is contained in:
parent
769e198ab0
commit
f448ee404a
|
@ -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],
|
||||
|
|
Loading…
Reference in New Issue