Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
BYK committed Nov 8, 2024
1 parent 007e770 commit 5741196
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sentry_sdk/spotlight.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ def capture_envelope(self, envelope):
CHARSET_PREFIX = "charset="
BODY_CLOSE_TAG = "</body>"
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):
Expand Down

0 comments on commit 5741196

Please sign in to comment.