From ae34c15925191bfc383a4df4c2e5f3e626fbe8a5 Mon Sep 17 00:00:00 2001 From: Soheab <33902984+Soheab@users.noreply.github.com> Date: Thu, 15 Jan 2026 17:36:57 +0100 Subject: [PATCH] uv run ruff format discord --- discord/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/http.py b/discord/http.py index 73aed7833..ee02fe052 100644 --- a/discord/http.py +++ b/discord/http.py @@ -1843,7 +1843,7 @@ class HTTPClient: payload: dict[str, Any], user_ids: List[Snowflake], ) -> MultipartParameters: - users = "Users\n" + "\n".join(map(str, user_ids)) + users = 'Users\n' + '\n'.join(map(str, user_ids)) form = [ {'name': 'payload_json', 'value': utils._to_json(payload)}, {'name': 'target_users_file', 'value': users, 'filename': 'users.csv', 'content_type': 'text/csv'},