From 5741196096adb79bf1e8a5780b2448efbc3066aa Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Fri, 8 Nov 2024 13:10:25 +0000 Subject: [PATCH] fix lint --- sentry_sdk/spotlight.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sentry_sdk/spotlight.py b/sentry_sdk/spotlight.py index 079e4f3741..a3060fd589 100644 --- a/sentry_sdk/spotlight.py +++ b/sentry_sdk/spotlight.py @@ -81,8 +81,8 @@ def capture_envelope(self, envelope): CHARSET_PREFIX = "charset=" BODY_CLOSE_TAG = "" BODY_CLOSE_TAG_POSSIBILITIES = [ - "".join(l) - for l in product(*zip(BODY_CLOSE_TAG.upper(), BODY_CLOSE_TAG.lower())) + "".join(chars) + for chars in product(*zip(BODY_CLOSE_TAG.upper(), BODY_CLOSE_TAG.lower())) ] class SpotlightMiddleware(MiddlewareMixin):