From bfff39e23541a3f6528bfe0835220b7647f4dd8c Mon Sep 17 00:00:00 2001 From: chillymosh <86857777+chillymosh@users.noreply.github.com> Date: Fri, 10 Jan 2025 15:14:50 +0000 Subject: [PATCH] Ruff --- twitchio/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitchio/http.py b/twitchio/http.py index e11a4b85..99ab0213 100644 --- a/twitchio/http.py +++ b/twitchio/http.py @@ -261,7 +261,7 @@ def build_url(self, *, remove_none: bool = True, duplicate_key: bool = True) -> continue if isinstance(value, (str, int)): - url += f'{key}={self.encode(str(value), safe="+", plus=True)}&' + url += f"{key}={self.encode(str(value), safe='+', plus=True)}&" elif duplicate_key: for v in value: url += f"{key}={self.encode(str(v), safe='+', plus=True)}&"