From da0e4340d04c64ec2bffafb019f5c482e8d4468d Mon Sep 17 00:00:00 2001 From: Mendy Man Date: Tue, 14 Jan 2025 09:52:26 -0500 Subject: [PATCH] these need to be exported, since they were exported in the old api.py and can be a breaking change --- python/svix/api/application.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/python/svix/api/application.py b/python/svix/api/application.py index 9145c59e9..05c370fbc 100644 --- a/python/svix/api/application.py +++ b/python/svix/api/application.py @@ -139,3 +139,6 @@ def patch(self, app_id: str, application_patch: ApplicationPatch) -> Application def delete(self, app_id: str) -> None: return v1_application_delete.request_sync(client=self._client, app_id=app_id) + + +__all__ = ["ApplicationIn", "ApplicationOut", "ApplicationPatch"]