Skip to content

Commit 5741196

Browse files
committed
fix lint
1 parent 007e770 commit 5741196

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sentry_sdk/spotlight.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ def capture_envelope(self, envelope):
8181
CHARSET_PREFIX = "charset="
8282
BODY_CLOSE_TAG = "</body>"
8383
BODY_CLOSE_TAG_POSSIBILITIES = [
84-
"".join(l)
85-
for l in product(*zip(BODY_CLOSE_TAG.upper(), BODY_CLOSE_TAG.lower()))
84+
"".join(chars)
85+
for chars in product(*zip(BODY_CLOSE_TAG.upper(), BODY_CLOSE_TAG.lower()))
8686
]
8787

8888
class SpotlightMiddleware(MiddlewareMixin):

0 commit comments

Comments
 (0)