Skip to content

Commit 2272066

Browse files
authored
chore(hybrid-cloud): Fix get_webhook_payload_from_outbox classmethod (#51113)
1 parent 79f0726 commit 2272066

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/models/outbox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ def get_webhook_payload_from_request(self, request: HttpRequest) -> OutboxWebhoo
338338
)
339339

340340
@classmethod
341-
def get_webhook_payload_from_outbox(self, payload: Mapping[str, Any]) -> OutboxWebhookPayload:
341+
def get_webhook_payload_from_outbox(cls, payload: Mapping[str, Any]) -> OutboxWebhookPayload:
342342
return OutboxWebhookPayload(
343343
method=payload.get("method"),
344344
path=payload.get("path"),

0 commit comments

Comments
 (0)