From bba39d007212cb20c1e14efbd7ab1ec3e572015b Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Wed, 27 Nov 2024 17:57:03 +0100 Subject: [PATCH] python: Fix sync / async mismatch for op-webhook-endpoint API --- python/svix/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/svix/api.py b/python/svix/api.py index a8aceed2c..006ce1509 100644 --- a/python/svix/api.py +++ b/python/svix/api.py @@ -1657,8 +1657,8 @@ def statistics(self) -> Statistics: return Statistics(self._client) @property - def operational_webhook_endpoint(self) -> OperationalWebhookEndpointAsync: - return OperationalWebhookEndpointAsync(self._client) + def operational_webhook_endpoint(self) -> OperationalWebhookEndpoint: + return OperationalWebhookEndpoint(self._client) __all__ = [