Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
daibhin committed Nov 25, 2024
1 parent 3043385 commit 61eba6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions posthog/sentry/posthog_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ def processor(event, hint):
not not Hub.current.client.dsn and Dsn(Hub.current.client.dsn).project_id
)
if project_id:
properties[
"$sentry_url"
] = f"{PostHogIntegration.prefix}{PostHogIntegration.organization}/issues/?project={project_id}&query={event['event_id']}"
properties["$sentry_url"] = (
f"{PostHogIntegration.prefix}{PostHogIntegration.organization}/issues/?project={project_id}&query={event['event_id']}"
)

posthog.capture(posthog_distinct_id, "$exception", properties)

Expand Down

0 comments on commit 61eba6c

Please sign in to comment.